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

[#114] Addressed warnings. Fix of `with` statement clause in `password_reset`.

parent 4e7d9892
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,6 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
import Pleroma.Web.ControllerHelper, only: [json_response: 3]
alias Pleroma.Formatter
alias Pleroma.Web.TwitterAPI.{TwitterAPI, UserView, ActivityView, NotificationView}
alias Pleroma.Web.CommonAPI
alias Pleroma.{Repo, Activity, Object, User, Notification}
......@@ -329,7 +328,7 @@ def register(conn, params) do
def password_reset(conn, params) do
nickname_or_email = params["email"] || params["nickname"]
with is_binary(nickname_or_email),
with true <- is_binary(nickname_or_email),
%User{local: true} = user <- User.get_by_nickname_or_email(nickname_or_email) do
{:ok, token_record} = Pleroma.PasswordResetToken.create_token(user)
......
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