2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-05 19:53:53 +00:00
|
|
|
defmodule Pleroma.Plugs.UserEnabledPlug do
|
|
|
|
import Plug.Conn
|
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2018-12-01 11:46:08 +00:00
|
|
|
def call(%{assigns: %{user: %User{info: %{deactivated: true}}}} = conn, _) do
|
2018-09-05 19:53:53 +00:00
|
|
|
conn
|
|
|
|
|> assign(:user, nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, _) do
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|