forked from AkkomaGang/akkoma
Simplify the value comparison
This commit is contained in:
parent
81faf540b3
commit
8b84ca4901
1 changed files with 1 additions and 5 deletions
|
@ -455,11 +455,7 @@ defp set_locked(user, value) do
|
|||
end
|
||||
|
||||
defp set_confirmed(user, value) do
|
||||
{:ok, user} =
|
||||
case value do
|
||||
true -> User.need_confirmation(user, false)
|
||||
false -> User.need_confirmation(user, true)
|
||||
end
|
||||
{:ok, user} = User.need_confirmation(user, !value)
|
||||
|
||||
shell_info("Confirmation pending status of #{user.nickname}: #{user.confirmation_pending}")
|
||||
user
|
||||
|
|
Loading…
Reference in a new issue