forked from AkkomaGang/akkoma
[#114] User.register/1 tweak.
This commit is contained in:
parent
968d7490b6
commit
a532ad5d72
1 changed files with 2 additions and 2 deletions
|
@ -210,8 +210,8 @@ def register_changeset(struct, params \\ %{}, opts \\ []) do
|
|||
|
||||
@doc "Inserts provided changeset, performs post-registration actions (confirmation email sending etc.)"
|
||||
def register(%Ecto.Changeset{} = changeset) do
|
||||
with {:ok, user} <- Repo.insert(changeset) do
|
||||
{:ok, _} = try_send_confirmation_email(user)
|
||||
with {:ok, user} <- Repo.insert(changeset),
|
||||
{:ok, _} = try_send_confirmation_email(user) do
|
||||
{:ok, user}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue