feat: Add a page for viewing a device's details

This commit is contained in:
Ginger
2026-04-30 14:55:21 -04:00
parent 2ef8a1edd7
commit 3e8403de64
14 changed files with 221 additions and 94 deletions
@@ -0,0 +1,10 @@
<ul>
{% for scope in scopes %}
{% match scope %}
{% when Scope::ClientApi %}
<li>Interact with Matrix on your behalf</li>
{% when Scope::Device(_) %}
<li>Connect to your Matrix account</li>
{% endmatch %}
{% endfor %}
</ul>