You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-08-07 17:03:01 +03:00
40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
{#
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
#}
|
|
|
|
{% macro list(scopes) %}
|
|
<ul>
|
|
{% for scope in (scopes | split(" ")) %}
|
|
{% if scope == "openid" %}
|
|
<li>{{ icon.user_profile() }}<p>{{ _("mas.scope.view_profile") }}</p></li>
|
|
{% elif scope == "urn:mas:graphql:*" %}
|
|
<li>{{ icon.info() }}<p>{{ _("mas.scope.edit_profile") }}</p></li>
|
|
<li>{{ icon.computer() }}<p>{{ _("mas.scope.manage_sessions") }}</p></li>
|
|
{% elif scope == "urn:matrix:org.matrix.msc2967.client:api:*" %}
|
|
<li>{{ icon.chat() }}<p>{{ _("mas.scope.view_messages") }}</p></li>
|
|
<li>{{ icon.send() }}<p>{{ _("mas.scope.send_messages") }}</p></li>
|
|
{% elif scope == "urn:synapse:admin:*" %}
|
|
<li>{{ icon.error() }}<p>{{ _("mas.scope.synapse_admin") }}</p></li>
|
|
{% elif scope == "urn:mas:admin" %}
|
|
<li>{{ icon.error() }}<p>{{ _("mas.scope.mas_admin") }}</p></li>
|
|
{% elif scope is starting_with("urn:matrix:org.matrix.msc2967.client:device:") %}
|
|
{# We hide this scope #}
|
|
{% else %}
|
|
<li>{{ icon.info() }}<p>{{ scope }}</p></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endmacro %}
|