diff options
| author | feld <feld@feld.me> | 2020-07-09 16:08:34 +0000 | 
|---|---|---|
| committer | feld <feld@feld.me> | 2020-07-09 16:08:34 +0000 | 
| commit | 4db667842970b2f92e30eb7fc7990161f96cb54b (patch) | |
| tree | e2e18ee90e3a373571a1038befdd3e37a0942ce7 /lib/mix/tasks | |
| parent | 6b14f0c514d19fe7c9717dd9d3ada29e442ba706 (diff) | |
| parent | d23804f191eb9e14cfb087863320ae90653c9544 (diff) | |
| download | pleroma-4db667842970b2f92e30eb7fc7990161f96cb54b.tar.gz pleroma-4db667842970b2f92e30eb7fc7990161f96cb54b.zip | |
Merge branch 'chore/use-the-alias' into 'develop'
Use the Pleroma.Config alias
See merge request pleroma/pleroma!2740
Diffstat (limited to 'lib/mix/tasks')
| -rw-r--r-- | lib/mix/tasks/pleroma/instance.ex | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/mix/tasks/pleroma/instance.ex b/lib/mix/tasks/pleroma/instance.ex index 86409738a..91440b453 100644 --- a/lib/mix/tasks/pleroma/instance.ex +++ b/lib/mix/tasks/pleroma/instance.ex @@ -145,7 +145,7 @@ defmodule Mix.Tasks.Pleroma.Instance do            options,            :uploads_dir,            "What directory should media uploads go in (when using the local uploader)?", -          Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads]) +          Config.get([Pleroma.Uploaders.Local, :uploads])          )          |> Path.expand() @@ -154,7 +154,7 @@ defmodule Mix.Tasks.Pleroma.Instance do            options,            :static_dir,            "What directory should custom public files be read from (custom emojis, frontend bundle overrides, robots.txt, etc.)?", -          Pleroma.Config.get([:instance, :static_dir]) +          Config.get([:instance, :static_dir])          )          |> Path.expand() | 
