From 7e1732c6543a3fb21ad6ebcad9498513b53e1ff4 Mon Sep 17 00:00:00 2001 From: FloatingGhost Date: Tue, 15 Aug 2023 14:00:35 +0100 Subject: [PATCH] mix format --- lib/mix/tasks/pleroma/config.ex | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/lib/mix/tasks/pleroma/config.ex b/lib/mix/tasks/pleroma/config.ex index 98d9df2c0..5aac1cb39 100644 --- a/lib/mix/tasks/pleroma/config.ex +++ b/lib/mix/tasks/pleroma/config.ex @@ -254,9 +254,19 @@ defmodule Mix.Tasks.Pleroma.Config do whitelisted = Enum.filter(raw, &ConfigurableFromDatabase.whitelisted_config?/1) raw_map = MapSet.new(raw) whitelisted_map = MapSet.new(whitelisted) - IO.puts("Config keys defined in description.exs but not listed as explicitly allowed in the db") - IO.puts(" Please check that standard admins should not need to touch the listed settings whilst the server is live.") - IO.puts(" !! Please remember that admins are not neccesarily sysadmins nor are they immune to oauth/password leakage.") + + IO.puts( + "Config keys defined in description.exs but not listed as explicitly allowed in the db" + ) + + IO.puts( + " Please check that standard admins should not need to touch the listed settings whilst the server is live." + ) + + IO.puts( + " !! Please remember that admins are not neccesarily sysadmins nor are they immune to oauth/password leakage." + ) + IO.puts("-------------") MapSet.difference(raw_map, whitelisted_map)