add permission to read reactions

This commit is contained in:
Johann150 2022-03-02 13:30:40 +01:00
parent aacc5100de
commit 88760deb6f
No known key found for this signature in database
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ def get_or_create_app(instance_url, callback, website, session):
r = session.post('{}://{}/api/app/create'.format(app.protocol, app.instance), json = {
'name': 'forget',
'description': website,
'permission': ['write:notes'],
'permission': ['write:notes', 'read:reactions'],
'callbackUrl': callback
})
r.raise_for_status()