Refactor common functions to common.ex
authorRin Toshaka <rinpatch@sdf.org>
Thu, 6 Dec 2018 17:01:28 +0000 (18:01 +0100)
committerRin Toshaka <rinpatch@sdf.org>
Thu, 6 Dec 2018 17:01:28 +0000 (18:01 +0100)
lib/mix/tasks/pleroma/instance.ex
lib/mix/tasks/pleroma/relay.ex

index 88fc3ba759c157573f3ee4fe1dfe8e561dba0d06..e0ebb3f5ebb8ec308e3f1663a35405adb021da24 100644 (file)
@@ -67,13 +67,19 @@ defmodule Mix.Tasks.Pleroma.Instance do
         )
 
       name =
-        Common.get_option(options, :name, "What is the name of your instance? (e.g. Pleroma/Soykaf)")
+        Common.get_option(
+          options,
+          :name,
+          "What is the name of your instance? (e.g. Pleroma/Soykaf)"
+        )
 
       email = Common.get_option(options, :admin_email, "What is your admin email address?")
 
-      dbhost = Common.get_option(options, :dbhost, "What is the hostname of your database?", "localhost")
+      dbhost =
+        Common.get_option(options, :dbhost, "What is the hostname of your database?", "localhost")
 
-      dbname = Common.get_option(options, :dbname, "What is the name of your database?", "pleroma_dev")
+      dbname =
+        Common.get_option(options, :dbname, "What is the name of your database?", "pleroma_dev")
 
       dbuser =
         Common.get_option(
@@ -145,7 +151,4 @@ defmodule Mix.Tasks.Pleroma.Instance do
       )
     end
   end
-
-
-
 end
index 828c7cd3d5d7ec443246d940a6ff1fbdbd010335..4aea5273274f7ec405bc9cb928d8f9f1cb4b1d9d 100644 (file)
@@ -20,7 +20,8 @@ defmodule Mix.Tasks.Pleroma.Relay do
   Example: ``mix pleroma.relay unfollow https://example.org/relay``
   """
   def run(["follow", target]) do
-    Common.start_pleroma
+    Common.start_pleroma()
+
     with {:ok, activity} <- Relay.follow(target) do
       # put this task to sleep to allow the genserver to push out the messages
       :timer.sleep(500)
@@ -30,7 +31,7 @@ defmodule Mix.Tasks.Pleroma.Relay do
   end
 
   def run(["unfollow", target]) do
-    Common.start_pleroma
+    Common.start_pleroma()
 
     with {:ok, activity} <- Relay.follow(target) do
       # put this task to sleep to allow the genserver to push out the messages