diff options
author | feld <feld@feld.me> | 2019-04-04 19:52:22 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2019-04-04 19:52:22 +0000 |
commit | 3b12eeda192e739e8328ef4202059bb482d1cff2 (patch) | |
tree | 154ffa327c28f3adc58d893d389fe0208143278d /mix.exs | |
parent | 3c7f5bb1dcf60475015094b73c5f41a2f0ffee6b (diff) | |
download | pleroma-3b12eeda192e739e8328ef4202059bb482d1cff2.tar.gz pleroma-3b12eeda192e739e8328ef4202059bb482d1cff2.zip |
Add ability to ship logs to a Slack channel
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -41,7 +41,7 @@ defmodule Pleroma.Mixfile do def application do [ mod: {Pleroma.Application, []}, - extra_applications: [:logger, :runtime_tools, :comeonin], + extra_applications: [:logger, :runtime_tools, :comeonin, :quack], included_applications: [:ex_syslogger] ] end @@ -94,7 +94,8 @@ defmodule Pleroma.Mixfile do {:auto_linker, git: "https://git.pleroma.social/pleroma/auto_linker.git", ref: "479dd343f4e563ff91215c8275f3b5c67e032850"}, - {:pleroma_job_queue, "~> 0.2.0"} + {:pleroma_job_queue, "~> 0.2.0"}, + {:quack, "~> 0.1.1"} ] end |