forked from AkkomaGang/akkoma
Style fixes
This commit is contained in:
parent
a2fcfc78c9
commit
5c6f575315
1 changed files with 4 additions and 8 deletions
|
@ -892,14 +892,9 @@ def list_log(conn, params) do
|
|||
end
|
||||
|
||||
def config_descriptions(conn, _params) do
|
||||
descriptions_json =
|
||||
@descriptions
|
||||
|> Enum.filter(&whitelisted_config?/1)
|
||||
|> Jason.encode!()
|
||||
descriptions = Enum.filter(@descriptions, &whitelisted_config?/1)
|
||||
|
||||
conn
|
||||
|> Plug.Conn.put_resp_content_type("application/json")
|
||||
|> Plug.Conn.send_resp(200, descriptions_json)
|
||||
json(conn, descriptions)
|
||||
end
|
||||
|
||||
def config_show(conn, %{"only_db" => true}) do
|
||||
|
@ -954,7 +949,8 @@ def config_show(conn, _params) do
|
|||
def config_update(conn, %{"configs" => configs}) do
|
||||
with :ok <- configurable_from_database(conn) do
|
||||
{_errors, results} =
|
||||
Enum.filter(configs, &whitelisted_config?/1)
|
||||
configs
|
||||
|> Enum.filter(&whitelisted_config?/1)
|
||||
|> Enum.map(fn
|
||||
%{"group" => group, "key" => key, "delete" => true} = params ->
|
||||
ConfigDB.delete(%{group: group, key: key, subkeys: params["subkeys"]})
|
||||
|
|
Loading…
Reference in a new issue