mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-04 15:43:11 +00:00
Merge branch 'bugfix/undocumented-mastodon-app-api' into 'develop'
mastodon api: add undocumented fields to json response, return app id as string… See merge request pleroma/pleroma!274
This commit is contained in:
commit
bdb6811f6f
|
@ -19,9 +19,12 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|||
with cs <- App.register_changeset(%App{}, params) |> IO.inspect(),
|
||||
{:ok, app} <- Repo.insert(cs) |> IO.inspect() do
|
||||
res = %{
|
||||
id: app.id,
|
||||
id: app.id |> to_string,
|
||||
name: app.client_name,
|
||||
client_id: app.client_id,
|
||||
client_secret: app.client_secret
|
||||
client_secret: app.client_secret,
|
||||
redirect_uris: app.redirect_uris,
|
||||
website: app.website
|
||||
}
|
||||
|
||||
json(conn, res)
|
||||
|
|
Loading…
Reference in a new issue