diff options
author | rinpatch <rinpatch@sdf.org> | 2019-10-04 13:23:01 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-10-04 13:23:01 +0000 |
commit | a553ed542774891b6b0b7a57372a2c0300bbe2ba (patch) | |
tree | e67eab56a7cac2b2088df44a83e901d9b8d8c10c /lib/mix/tasks/pleroma/config.ex | |
parent | 70d18a278c76e5681543a21150884f9e5dfcd097 (diff) | |
parent | 1e6aa101688e157c9df7ff39aad9acf2fb44fec6 (diff) | |
download | pleroma-a553ed542774891b6b0b7a57372a2c0300bbe2ba.tar.gz |
Merge branch 'remove-dynamic-config-from-1.1' into 'maint/1.1'
Remove in-db configuration references from 1.1
See merge request pleroma/pleroma!1781
Diffstat (limited to 'lib/mix/tasks/pleroma/config.ex')
-rw-r--r-- | lib/mix/tasks/pleroma/config.ex | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/lib/mix/tasks/pleroma/config.ex b/lib/mix/tasks/pleroma/config.ex index 462940e7e..d29dda852 100644 --- a/lib/mix/tasks/pleroma/config.ex +++ b/lib/mix/tasks/pleroma/config.ex @@ -3,22 +3,11 @@ # SPDX-License-Identifier: AGPL-3.0-only defmodule Mix.Tasks.Pleroma.Config do + @doc false use Mix.Task import Mix.Pleroma alias Pleroma.Repo alias Pleroma.Web.AdminAPI.Config - @shortdoc "Manages the location of the config" - @moduledoc """ - Manages the location of the config. - - ## Transfers config from file to DB. - - mix pleroma.config migrate_to_db - - ## Transfers config from DB to file `config/env.exported_from_db.secret.exs` - - mix pleroma.config migrate_from_db ENV - """ def run(["migrate_to_db"]) do start_pleroma() |