BBS: small fixes.
authorlain <lain@soykaf.club>
Sat, 4 May 2019 13:06:18 +0000 (15:06 +0200)
committerlain <lain@soykaf.club>
Sat, 4 May 2019 13:06:18 +0000 (15:06 +0200)
lib/pleroma/bbs/handler.ex
mix.exs
test/bbs/handler_test.exs

index 1ebba77d26dedcff578959c03546a08772b77d79..75ba35dc22609c9b46cbcb5b6890d8bd9448dcd7 100644 (file)
@@ -1,12 +1,8 @@
 defmodule Pleroma.BBS.Handler do
-  @moduledoc """
-  An example implementation of `Sshd.ShellHandler`, implementing a very simple
-  Read-Eval-Loop, that does nothing.
-  """
   use Sshd.ShellHandler
+  alias Pleroma.Activity
   alias Pleroma.Web.CommonAPI
   alias Pleroma.Web.ActivityPub.ActivityPub
-  alias Pleroma.Activity
 
   def on_shell(username, _pubkey, _ip, _port) do
     :ok = IO.puts("Welcome to #{Pleroma.Config.get([:instance, :name])}!")
diff --git a/mix.exs b/mix.exs
index 38e83e67927bd1dff9227e9ef1e0c11cfa33c780..47f7c290390c1814b1faad2b9fd8a80bbbd778d3 100644 (file)
--- a/mix.exs
+++ b/mix.exs
@@ -113,7 +113,7 @@ defmodule Pleroma.Mixfile do
       {:recon, github: "ferd/recon", tag: "2.4.0"},
       {:quack, "~> 0.1.1"},
       {:benchee, "~> 1.0"},
-                                                       {:esshd, "~> 0.1.0"}
+      {:esshd, "~> 0.1.0"}
     ] ++ oauth_deps
   end
 
index a22c6d64d1ccbbfe1a9d643bbb7368326e9faefd..1386a2d169f377a7b12e92c157d907b0dcab46be 100644 (file)
@@ -1,10 +1,10 @@
 defmodule Pleroma.BBS.HandlerTest do
   use Pleroma.DataCase
+  alias Pleroma.Activity
   alias Pleroma.BBS.Handler
   alias Pleroma.Web.CommonAPI
-  alias Pleroma.User
   alias Pleroma.Repo
-  alias Pleroma.Activity
+  alias Pleroma.User
 
   import ExUnit.CaptureIO
   import Pleroma.Factory