Include session scopes in TokenView

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-09-19 10:57:50 +02:00
parent 6358294943
commit 23e5eed4e0
3 changed files with 4 additions and 2 deletions

View file

@ -0,0 +1 @@
Include session scopes in TokenView

View file

@ -15,7 +15,8 @@ def render("show.json", %{token: token_entry}) do
%{
id: token_entry.id,
valid_until: token_entry.valid_until,
app_name: token_entry.app.client_name
app_name: token_entry.app.client_name,
scopes: token_entry.scopes
}
end
end

View file

@ -69,7 +69,7 @@ test "renders list", %{token: token} do
|> hd()
|> Map.keys()
assert keys -- ["id", "app_name", "valid_until"] == []
assert keys -- ["id", "app_name", "valid_until", "scopes"] == []
end
test "revoke token", %{token: token} do