diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-04-22 13:44:21 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-04-22 13:44:21 +0200 |
commit | 8fb73c28bbeccb6a7462e4a0e9fb58726b68bcf5 (patch) | |
tree | 13f5fbc61181607aea2d1f4843c5417ed1512ffc /config | |
parent | 1feb193731881f87efda0dd3c08d554d2ef22971 (diff) | |
download | pleroma-8fb73c28bbeccb6a7462e4a0e9fb58726b68bcf5.tar.gz pleroma-8fb73c28bbeccb6a7462e4a0e9fb58726b68bcf5.zip |
Only have one subscription per callback.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 2 | ||||
-rw-r--r-- | config/test.exs | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 18a2490a4..3826dddff 100644 --- a/config/config.exs +++ b/config/config.exs @@ -30,6 +30,8 @@ config :mime, :types, %{ "application/xrd+xml" => ["xrd+xml"] } +config :pleroma, :websub_verifier, Pleroma.Web.Websub + # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. import_config "#{Mix.env}.exs" diff --git a/config/test.exs b/config/test.exs index f5d6f240d..5d91279a2 100644 --- a/config/test.exs +++ b/config/test.exs @@ -24,3 +24,5 @@ config :pleroma, Pleroma.Repo, # Reduce hash rounds for testing config :comeonin, :pbkdf2_rounds, 1 + +config :pleroma, :websub_verifier, Pleroma.Web.WebsubMock |