Skip to content
Snippets Groups Projects
Commit 8adcd1e8 authored by Ivan Tashkinov's avatar Ivan Tashkinov
Browse files

[#114] Removed flash messages rendering on redirects.

parent 501ce34d
No related branches found
No related tags found
No related merge requests found
......@@ -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 @@ defmodule Pleroma.Web.TwitterAPI.Controller 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 @@ defmodule Pleroma.Web.TwitterAPI.Controller 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment