more renamings
authorAlexander Strizhakov <alex.strizhakov@gmail.com>
Fri, 10 Jan 2020 16:49:40 +0000 (19:49 +0300)
committerAlexander Strizhakov <alex.strizhakov@gmail.com>
Fri, 10 Jan 2020 16:51:32 +0000 (19:51 +0300)
docs/API/admin_api.md
lib/pleroma/web/admin_api/admin_api_controller.ex
test/web/admin_api/admin_api_controller_test.exs

index f2a0906b8eb832b4479aee4228b3db7fc7c08f76..37cd1910d8943da087ec607da01857aa95607358 100644 (file)
@@ -674,7 +674,7 @@ Copies all settings from database to `config/{env}.exported_from_db.secret.exs`
 - Params: none
 - Response:
   - On failure:
-    - 400 Bad Request `"To use this endpoint you need to enable dynamic configuration."`
+    - 400 Bad Request `"To use this endpoint you need to enable configuration from database."`
 
 ```json
 {}
@@ -689,8 +689,8 @@ Copies all settings from database to `config/{env}.exported_from_db.secret.exs`
 - Params: none
 - Response:
   - On failure:
-    - 400 Bad Request `"To use this endpoint you need to enable dynamic configuration."`
-    - 400 Bad Request `"To use dynamic configuration migrate your settings to database."`
+    - 400 Bad Request `"To use this endpoint you need to enable configuration from database."`
+    - 400 Bad Request `"To use configuration from database migrate your settings to database."`
 
 ```json
 {
@@ -826,7 +826,7 @@ config :quack,
 
 - Response:
   - On failure:
-    - 400 Bad Request `"To use this endpoint you need to enable dynamic configuration."`
+    - 400 Bad Request `"To use this endpoint you need to enable configuration from database."`
 ```json
 {
   configs: [
index 849641113baead98ff76580169c57abe946d8846..a13dd47759887f44baaa31bcb9edcd1dea3e8276 100644 (file)
@@ -802,7 +802,10 @@ defmodule Pleroma.Web.AdminAPI.AdminAPIController do
       configs = Pleroma.Repo.all(Config)
 
       if configs == [] do
-        errors(conn, {:error, "To use dynamic configuration migrate your settings to database."})
+        errors(
+          conn,
+          {:error, "To use configuration from database migrate your settings to database."}
+        )
       else
         conn
         |> put_view(ConfigView)
@@ -847,7 +850,10 @@ defmodule Pleroma.Web.AdminAPI.AdminAPIController do
     if Pleroma.Config.get([:configurable_from_database]) do
       :ok
     else
-      errors(conn, {:error, "To use this endpoint you need to enable dynamic configuration."})
+      errors(
+        conn,
+        {:error, "To use this endpoint you need to enable configuration from database."}
+      )
     end
   end
 
index bbaff8ed2b34ef9705942050e4a004e3c8a07b05..aae9c872abeb2685305fcc1d5b4acb2ff53e85c8 100644 (file)
@@ -1939,21 +1939,21 @@ defmodule Pleroma.Web.AdminAPI.AdminAPIControllerTest do
       %{conn: assign(conn, :user, admin)}
     end
 
-    test "when dynamic configuration is off", %{conn: conn} do
+    test "when configuration from database is off", %{conn: conn} do
       initial = Pleroma.Config.get([:configurable_from_database])
       Pleroma.Config.put([:configurable_from_database], false)
       on_exit(fn -> Pleroma.Config.put([:configurable_from_database], initial) end)
       conn = get(conn, "/api/pleroma/admin/config")
 
       assert json_response(conn, 400) ==
-               "To use this endpoint you need to enable dynamic configuration."
+               "To use this endpoint you need to enable configuration from database."
     end
 
     test "without any settings in db", %{conn: conn} do
       conn = get(conn, "/api/pleroma/admin/config")
 
       assert json_response(conn, 400) ==
-               "To use dynamic configuration migrate your settings to database."
+               "To use configuration from database migrate your settings to database."
     end
 
     test "with settings in db", %{conn: conn} do
@@ -1990,7 +1990,7 @@ defmodule Pleroma.Web.AdminAPI.AdminAPIControllerTest do
       |> post("/api/pleroma/admin/config", %{"configs" => []})
 
     assert json_response(conn, 400) ==
-             "To use this endpoint you need to enable dynamic configuration."
+             "To use this endpoint you need to enable configuration from database."
   end
 
   describe "POST /api/pleroma/admin/config" do
@@ -2928,7 +2928,7 @@ defmodule Pleroma.Web.AdminAPI.AdminAPIControllerTest do
       assert Repo.all(Pleroma.Web.AdminAPI.Config) == []
     end
 
-    test "returns error if dynamic configuration is off", %{conn: conn} do
+    test "returns error if configuration from database is off", %{conn: conn} do
       initial = Pleroma.Config.get([:configurable_from_database])
       on_exit(fn -> Pleroma.Config.put([:configurable_from_database], initial) end)
       Pleroma.Config.put([:configurable_from_database], false)
@@ -2936,7 +2936,7 @@ defmodule Pleroma.Web.AdminAPI.AdminAPIControllerTest do
       conn = get(conn, "/api/pleroma/admin/config/migrate_from_db")
 
       assert json_response(conn, 400) ==
-               "To use this endpoint you need to enable dynamic configuration."
+               "To use this endpoint you need to enable configuration from database."
     end
   end