Merge branch 'revert-c2c48ec2' into 'develop'

Reinstate `push` and `admin` scopes

See merge request pleroma/pleroma-fe!1034
This commit is contained in:
HJ 2019-12-14 14:12:41 +00:00
commit c1a0e23947
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ export const getOrCreateApp = ({ clientId, clientSecret, instance, commit }) =>
form.append('client_name', `PleromaFE_${window.___pleromafe_commit_hash}_${(new Date()).toISOString()}`)
form.append('redirect_uris', REDIRECT_URI)
form.append('scopes', 'read write follow')
form.append('scopes', 'read write follow push admin')
return window.fetch(url, {
method: 'POST',
@ -28,7 +28,7 @@ const login = ({ instance, clientId }) => {
response_type: 'code',
client_id: clientId,
redirect_uri: REDIRECT_URI,
scope: 'read write follow'
scope: 'read write follow push admin'
}
const dataString = reduce(data, (acc, v, k) => {