diff options
author | Aaron Parecki <aaron@parecki.com> | 2019-09-29 15:36:59 +0200 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2019-09-29 15:36:59 +0200 |
commit | f0c5635c2f072448808f35990b7f8abd84b9607d (patch) | |
tree | 47984c59c55a834c2ca2c2ae4388df2a6a5b6857 /controllers/micropub.php | |
parent | efe16c375a202cff5c2b07e3c7fb273a2e8bec16 (diff) |
add a dropdown to choose post visibility
Diffstat (limited to 'controllers/micropub.php')
-rw-r--r-- | controllers/micropub.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/micropub.php b/controllers/micropub.php index a6ec9d5..fa8e477 100644 --- a/controllers/micropub.php +++ b/controllers/micropub.php @@ -2,7 +2,7 @@ $app->get('/micropub/syndications', function() use($app) { if($user=require_login($app)) { - $data = get_micropub_config($user, ['q'=>'syndicate-to']); + $data = get_micropub_config($user); $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'targets' => $data['targets'], |