forked from AkkomaGang/akkoma
[#114] Removed flash messages rendering on redirects.
This commit is contained in:
parent
501ce34d7f
commit
8adcd1e80f
1 changed files with 0 additions and 3 deletions
|
@ -13,7 +13,6 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
|
|||
require Logger
|
||||
|
||||
plug(:only_if_public_instance when action in [:public_timeline, :public_and_external_timeline])
|
||||
plug(:fetch_flash when action in [:confirm_email, :resend_confirmation_email])
|
||||
action_fallback(:errors)
|
||||
|
||||
def verify_credentials(%{assigns: %{user: user}} = conn, _params) do
|
||||
|
@ -390,7 +389,6 @@ def confirm_email(conn, %{"token" => token}) do
|
|||
changeset <- Changeset.change(user) |> Changeset.put_embed(:info, info_change),
|
||||
{:ok, _} <- User.update_and_set_cache(changeset) do
|
||||
conn
|
||||
|> put_flash(:info, "Email confirmed. Please sign in.")
|
||||
|> redirect(to: "/")
|
||||
end
|
||||
end
|
||||
|
@ -401,7 +399,6 @@ def resend_confirmation_email(conn, params) do
|
|||
with %User{} = user <- User.get_by_nickname_or_email(nickname_or_email),
|
||||
{:ok, _} <- User.try_send_confirmation_email(user) do
|
||||
conn
|
||||
|> put_flash(:info, "Email confirmation has been sent.")
|
||||
|> json_response(:no_content, "")
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue