make_moderator.ex: set cache on update

This commit is contained in:
eal 2018-06-11 22:53:38 +03:00
parent dca1d6d162
commit 18837c2fed
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ defmodule Mix.Tasks.SetModerator do
|> Map.put("is_moderator", !!moderator)
cng = User.info_changeset(user, %{info: info})
user = Repo.update!(cng)
{:ok, user} = User.update_and_set_cache(cng)
IO.puts("Moderator status of #{nickname}: #{user.info["is_moderator"]}")
else