diff options
author | Aaron Parecki <aaron@parecki.com> | 2017-02-27 12:31:06 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2017-02-27 12:31:06 -0800 |
commit | 1123ed958f7c22116a0c432779aaf1c27fcaf787 (patch) | |
tree | 3000bb267e65efb8561c459b7a38d07bda690231 /controllers/auth.php | |
parent | bb5fd837d12d125f908feb09808df3f6db1fe817 (diff) |
basic editing support
* new route `/edit?url=` intended to be used as an edit button target, which detects the type of post and redirects to the appropriate editing interface
* implemented the edit interface for favorites
Diffstat (limited to 'controllers/auth.php')
-rw-r--r-- | controllers/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/auth.php b/controllers/auth.php index 9fd1493..299bde2 100644 --- a/controllers/auth.php +++ b/controllers/auth.php @@ -33,7 +33,7 @@ $app->get('/auth/start', function() use($app) { $tokenEndpoint = IndieAuth\Client::discoverTokenEndpoint($me); $micropubEndpoint = IndieAuth\Client::discoverMicropubEndpoint($me); - $defaultScope = 'create'; + $defaultScope = 'create update'; if($tokenEndpoint && $micropubEndpoint && $authorizationEndpoint) { // Generate a "state" parameter for the request |