Fix admin settings

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2020-06-09 17:41:08 +02:00
parent a0eb880f6a
commit ff5e27b0a0
2 changed files with 10 additions and 2 deletions

View File

@@ -157,7 +157,15 @@ defmodule Mobilizon.GraphQL.Resolvers.Admin do
when is_admin(role) do
with {:ok, res} <- Admin.save_settings("instance", args) do
res =
res |> Enum.map(fn {key, %Setting{value: value}} -> {key, value} end) |> Enum.into(%{})
res
|> Enum.map(fn {key, %Setting{value: value}} ->
case value do
"true" -> {key, true}
"false" -> {key, false}
value -> {key, value}
end
end)
|> Enum.into(%{})
Config.clear_config_cache()