[#114] Routes and config for confirm_email and email_invite (Twitter API).
This commit is contained in:
parent
e3a21bcd45
commit
bfff2399ff
3 changed files with 10 additions and 0 deletions
|
|
@ -166,6 +166,9 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do
|
|||
textlimit: to_string(Keyword.get(instance, :limit)),
|
||||
closed: if(Keyword.get(instance, :registrations_open), do: "0", else: "1"),
|
||||
private: if(Keyword.get(instance, :public, true), do: "0", else: "1"),
|
||||
accountActivationRequired:
|
||||
if(Keyword.get(instance, :account_activation_required, false), do: "1", else: "0"),
|
||||
invitesEnabled: if(Keyword.get(instance, :invites_enabled, true), do: "1", else: "0"),
|
||||
vapidPublicKey: vapid_public_key
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -340,6 +340,10 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
|
|||
end
|
||||
end
|
||||
|
||||
def confirm_email(_conn, _params), do: :noop
|
||||
|
||||
def email_invite(_conn, _params), do: :noop
|
||||
|
||||
def update_avatar(%{assigns: %{user: user}} = conn, params) do
|
||||
{:ok, object} = ActivityPub.upload(params, type: :avatar)
|
||||
change = Changeset.change(user, %{avatar: object.data})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue