Registration tests

This commit is contained in:
Alex Gleason 2020-10-11 21:38:01 -05:00
commit 521e965884
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 23 additions and 5 deletions

View file

@ -1582,9 +1582,11 @@ defmodule Pleroma.User do
end
def approve(%User{} = user) do
change(user, approval_pending: false)
|> update_and_set_cache()
|> post_register_action()
with chg <- change(user, approval_pending: false),
{:ok, user} <- update_and_set_cache(chg) do
post_register_action(user)
{:ok, user}
end
end
def update_notification_settings(%User{} = user, settings) do