forked from AkkomaGang/akkoma
mastodon api: add undocumented fields to json response, return app id as string like mastodon itself does
This commit is contained in:
parent
8c3880f18c
commit
b5a92b1199
1 changed files with 5 additions and 2 deletions
|
@ -19,9 +19,12 @@ def create_app(conn, params) 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.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