Skip to content
Snippets Groups Projects
Verified Commit 95148e33 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Show allowed scopes for an OAuth2 application in the detail view

parent 88adac18
No related branches found
No related tags found
1 merge request!759Resolve "[OAuth] Allow limiting scopes per application"
Pipeline #39074 passed
......@@ -46,6 +46,18 @@
{{ application.client_type }}
</td>
</tr>
<tr>
<th>
{% trans "Allowed scopes"%}
</th>
<td>
<ul>
{% for scope in application.allowed_scopes %}
<li>{{ scope }}</li>
{% endfor %}
</ul>
</td>
</tr>
<tr>
<th>
{% trans "Redirect URIs"%}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment