Fix credo warnings

This commit is contained in:
Egor Kislitsyn 2020-10-20 17:47:04 +04:00
parent e87901c424
commit 034ac43f3a
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805
2 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@
defmodule Pleroma.Web.PleromaAPI.BackupController do defmodule Pleroma.Web.PleromaAPI.BackupController do
use Pleroma.Web, :controller use Pleroma.Web, :controller
alias Pleroma.Web.Plugs.OAuthScopesPlug
alias Pleroma.User.Backup alias Pleroma.User.Backup
alias Pleroma.Web.Plugs.OAuthScopesPlug
action_fallback(Pleroma.Web.MastodonAPI.FallbackController) action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
plug(OAuthScopesPlug, %{scopes: ["read:accounts"]} when action in [:index, :create]) plug(OAuthScopesPlug, %{scopes: ["read:accounts"]} when action in [:index, :create])

View File

@ -10,9 +10,9 @@ defmodule Pleroma.User.BackupTest do
import Pleroma.Factory import Pleroma.Factory
import Swoosh.TestAssertions import Swoosh.TestAssertions
alias Pleroma.User.Backup
alias Pleroma.Bookmark alias Pleroma.Bookmark
alias Pleroma.Tests.ObanHelpers alias Pleroma.Tests.ObanHelpers
alias Pleroma.User.Backup
alias Pleroma.Web.CommonAPI alias Pleroma.Web.CommonAPI
alias Pleroma.Workers.BackupWorker alias Pleroma.Workers.BackupWorker