diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-23 18:21:29 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-23 18:21:29 +0300 |
commit | 6cd2e851d9d61ce82edf83ced79c9d4c613c0373 (patch) | |
tree | b234691a0eada317fcc89c372129b4e2f7f509bf /lib | |
parent | e8e57e398f701497b9989c19c36c20fd227393ac (diff) | |
download | pleroma-6cd2e851d9d61ce82edf83ced79c9d4c613c0373.tar.gz |
parsing Swoosh modules
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/config/config_db.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/config/config_db.ex b/lib/pleroma/config/config_db.ex index 91a1aa0cc..be6688095 100644 --- a/lib/pleroma/config/config_db.ex +++ b/lib/pleroma/config/config_db.ex @@ -416,7 +416,7 @@ defmodule Pleroma.ConfigDB do @spec is_module_name?(String.t()) :: boolean() def is_module_name?(string) do - Regex.match?(~r/^(Pleroma|Phoenix|Tesla|Quack|Ueberauth)\./, string) or + Regex.match?(~r/^(Pleroma|Phoenix|Tesla|Quack|Ueberauth|Swoosh)\./, string) or string in ["Oban", "Ueberauth", "ExSyslogger"] end end |