diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-03-05 03:52:23 +0100 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-03-13 04:26:54 +0100 |
commit | a3a9cec4835738216800d2cebd295fb8dbf10f34 (patch) | |
tree | dcf75486687527d207b55730208db919087b7539 /lib/pleroma/web/push/impl.ex | |
parent | 4c440f12c345eeb1bc5092f9440706b2a220aa38 (diff) | |
download | pleroma-a3a9cec4835738216800d2cebd295fb8dbf10f34.tar.gz |
[Credo] fix Credo.Check.Readability.AliasOrder
Diffstat (limited to 'lib/pleroma/web/push/impl.ex')
-rw-r--r-- | lib/pleroma/web/push/impl.ex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/pleroma/web/push/impl.ex b/lib/pleroma/web/push/impl.ex index 0437ffd00..863573185 100644 --- a/lib/pleroma/web/push/impl.ex +++ b/lib/pleroma/web/push/impl.ex @@ -5,13 +5,13 @@ defmodule Pleroma.Web.Push.Impl do @moduledoc "The module represents implementation push web notification" - alias Pleroma.Repo - alias Pleroma.User alias Pleroma.Activity + alias Pleroma.Notification alias Pleroma.Object - alias Pleroma.Web.Push.Subscription + alias Pleroma.Repo + alias Pleroma.User alias Pleroma.Web.Metadata.Utils - alias Pleroma.Notification + alias Pleroma.Web.Push.Subscription require Logger import Ecto.Query |