Merge branch 'token-view-scopes' into 'develop'

Include session scopes in TokenView

See merge request pleroma/pleroma!4273
This commit is contained in:
lain 2024-11-12 11:18:10 +00:00
commit 62bbed1e58
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 @@ defmodule Pleroma.Web.TwitterAPI.TokenView 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 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
|> hd()
|> Map.keys()
assert keys -- ["id", "app_name", "valid_until"] == []
assert Enum.sort(keys) == Enum.sort(["id", "app_name", "valid_until", "scopes"])
end
test "revoke token", %{token: token} do