Skip to content
Snippets Groups Projects
Commit c07204bb authored by Julian's avatar Julian
Browse files

Fix OAuth2 logout URI form field

parent e00ea70d
Branches
Tags
No related merge requests found
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
<label for="client-logout-uris">{{ _('Logout URIs') }}</label> <label for="client-logout-uris">{{ _('Logout URIs') }}</label>
<textarea rows="3" class="form-control" id="client-logout-uris" name="logout_uris" placeholder="GET https://example.com/logout"> <textarea rows="3" class="form-control" id="client-logout-uris" name="logout_uris" placeholder="GET https://example.com/logout">
{%- for logout_uri in client.logout_uris %} {%- for logout_uri in client.logout_uris %}
{{ logout_uri.method }} {{ logout_uri.uri }} {{ logout_uri.method }} {{ logout_uri.uri }}{{ '\n' if not loop.last }}
{%- endfor %} {%- endfor %}
</textarea> </textarea>
<small class="form-text text-muted"> <small class="form-text text-muted">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment