diff options
author | lain <lain@soykaf.club> | 2019-05-04 15:47:50 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-05-04 15:47:50 +0200 |
commit | eb0fb73ddbed109ca4dcd758b60a25ff0dafc883 (patch) | |
tree | 0b6a8f1548c9938327731d32d86f3a9d76413110 | |
parent | c58fd4c038da8305d8840c38f525ceb9f13a644d (diff) | |
download | pleroma-eb0fb73ddbed109ca4dcd758b60a25ff0dafc883.tar.gz |
BBS: Credo fixes.
-rw-r--r-- | lib/pleroma/bbs/handler.ex | 2 | ||||
-rw-r--r-- | test/bbs/handler_test.exs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/bbs/handler.ex b/lib/pleroma/bbs/handler.ex index 14e6a6807..106fe5d18 100644 --- a/lib/pleroma/bbs/handler.ex +++ b/lib/pleroma/bbs/handler.ex @@ -1,8 +1,8 @@ defmodule Pleroma.BBS.Handler do use Sshd.ShellHandler alias Pleroma.Activity - alias Pleroma.Web.CommonAPI alias Pleroma.Web.ActivityPub.ActivityPub + alias Pleroma.Web.CommonAPI def on_shell(username, _pubkey, _ip, _port) do :ok = IO.puts("Welcome to #{Pleroma.Config.get([:instance, :name])}!") diff --git a/test/bbs/handler_test.exs b/test/bbs/handler_test.exs index 148df6ddd..7d5d68d11 100644 --- a/test/bbs/handler_test.exs +++ b/test/bbs/handler_test.exs @@ -2,10 +2,10 @@ defmodule Pleroma.BBS.HandlerTest do use Pleroma.DataCase alias Pleroma.Activity alias Pleroma.BBS.Handler - alias Pleroma.Web.CommonAPI alias Pleroma.Object alias Pleroma.Repo alias Pleroma.User + alias Pleroma.Web.CommonAPI import ExUnit.CaptureIO import Pleroma.Factory |