Allow update_credentials to update User.language

This commit is contained in:
Tusooa Zhu 2022-03-02 00:58:02 -05:00 committed by FloatingGhost
parent 7726148472
commit 1b77308644

View file

@ -217,6 +217,7 @@ def update_credentials(%{assigns: %{user: user}, body_params: params} = conn, _p
|> Maps.put_if_present(:is_locked, params[:locked])
# Note: param name is indeed :discoverable (not an error)
|> Maps.put_if_present(:is_discoverable, params[:discoverable])
|> Maps.put_if_present(:language, params[:language])
# What happens here:
#