{% extends "meta.html" %} {% block title %} Authorized applications - meta.sr.ht {% endblock %} {% block content %}

Authorized Clients

{% if any(client_authorizations) %}

The following third party clients have access to your account:

{% for token in client_authorizations %} {% endfor %}
Name Owner First Authorized Last Used Expires
{{ token.client.client_name }} {{ token.client.user.username }} {{ token.created | date }} {{ token.updated | date }} {{ token.expires | date }} Revoke
{% else %}

You have not granted any third party clients access to your account.

{% endif %}

Registered Clients

{% if any(current_user.oauth_clients) %}

You have registered the following OAuth clients:

{% for client in current_user.oauth_clients %} {% endfor %}
Name Client ID Active users
{{ client.client_name }} {{ client.client_id }} {{ client_tokens(client) }} Manage
{% else %}

You have not registered any OAuth clients yet.

{% endif %} Register new client {{icon("caret-right")}}

Personal Access Tokens

{% if any(personal_tokens) %}

You have obtained the following personal access tokens:

{% for token in personal_tokens %} {% endfor %}
Access token Date issued Last Used Expires
{{ token.token_partial }}... {{ token.created | date }} {{ token.updated | date }} {{ token.expires | date }} Revoke
{% else %}

You have not created any personal access tokens.

{% endif %} Generate new token {{icon("caret-right")}}
{% endblock %}