|
|
@ -2,7 +2,7 @@ extends ../layouts/focused |
|
|
|
block content |
|
|
|
|
|
|
|
section.uk-section.uk-section-default |
|
|
|
.uk-container |
|
|
|
.uk-container(style="max-width: 720px;") |
|
|
|
|
|
|
|
form(method="POST", action="/oauth2/authorize/decision").uk-form |
|
|
|
|
|
|
@ -26,10 +26,6 @@ block content |
|
|
|
h4.uk-margin-remove= oauth2.client.site.name |
|
|
|
.uk-text-small.uk-text-muted= oauth2.client.site.domainKey |
|
|
|
|
|
|
|
div(class="uk-width-1-1 uk-width-auto@m").uk-text-center |
|
|
|
span |
|
|
|
i.fas.fa-link |
|
|
|
|
|
|
|
div(class="uk-width-1-1 uk-width-auto@m") |
|
|
|
div(uk-grid).uk-grid-small |
|
|
|
.uk-width-auto |
|
|
@ -38,23 +34,22 @@ block content |
|
|
|
h4.uk-margin-remove= oauth2.user.displayName |
|
|
|
.uk-text-small.uk-text-muted @#{oauth2.user.username} |
|
|
|
|
|
|
|
.uk-margin |
|
|
|
- |
|
|
|
var scopeMap = { |
|
|
|
'account-read': 'Read account information (not email)', |
|
|
|
'event-write': 'Write events to your timelines', |
|
|
|
}; |
|
|
|
var scopes = oauth2.client.scopes.map((scope) => { |
|
|
|
return scopeMap[scope] || scope; |
|
|
|
}); |
|
|
|
- |
|
|
|
var scopeMap = { |
|
|
|
'account-read': 'Read account information (not email)', |
|
|
|
'event-write': 'Write events to your timelines', |
|
|
|
}; |
|
|
|
var scopes = oauth2.client.scopes.map((scope) => { |
|
|
|
return scopeMap[scope] || scope; |
|
|
|
}); |
|
|
|
|
|
|
|
.uk-text-bold Permissions requested: |
|
|
|
ul.uk-list.uk-list-square |
|
|
|
each scope in scopes |
|
|
|
li= scope |
|
|
|
.uk-text-bold Permissions requested: |
|
|
|
ul.uk-list.uk-list-square |
|
|
|
each scope in scopes |
|
|
|
li= scope |
|
|
|
|
|
|
|
.uk-card-footer |
|
|
|
div(uk-grid) |
|
|
|
div(uk-grid).uk-grid-small |
|
|
|
.uk-width-expand |
|
|
|
+renderBackButton() |
|
|
|
.uk-width-auto |
|
|
@ -62,4 +57,4 @@ block content |
|
|
|
.uk-width-auto |
|
|
|
button(id="allow", type="submit", value="Allow").uk-button.uk-button-primary Allow |
|
|
|
|
|
|
|
pre= JSON.stringify(oauth2, null, 2) |
|
|
|
//- pre= JSON.stringify(oauth2, null, 2) |