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

@ -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