summaryrefslogtreecommitdiff
path: root/controllers
diff options
context:
space:
mode:
authorAaron Parecki <aaron@parecki.com>2022-02-13 15:56:43 +0000
committerAaron Parecki <aaron@parecki.com>2022-02-13 15:56:43 +0000
commit61552f92fcf8a33e9796c7ff93d1872ee68d9a2e (patch)
treecba82749de14ca6d918d23c152cab70cacbd6d5e /controllers
parentb1ee2ffe013a4ffaadb790126c8f9578101eba36 (diff)
request profile scope
Diffstat (limited to 'controllers')
-rw-r--r--controllers/auth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/auth.php b/controllers/auth.php
index 0e671b6..50fd15b 100644
--- a/controllers/auth.php
+++ b/controllers/auth.php
@@ -9,7 +9,7 @@ $app->get('/auth/start', function() use($app) {
$params = $req->params();
- $defaultScope = 'create update media';
+ $defaultScope = 'create update media profile';
list($authorizationURL, $error) = IndieAuth\Client::begin($params['me'], $defaultScope);