summaryrefslogtreecommitdiff
path: root/lib/pleroma/plugs/ensure_user_key_plug.ex
blob: 9795cdbdeb0927472ed04f8c3fe0073899c6f9ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Plugs.EnsureUserKeyPlug do
  import Plug.Conn

  def init(opts) do
    opts
  end

  def call(%{assigns: %{user: _}} = conn, _), do: conn

  def call(conn, _) do
    conn
    |> assign(:user, nil)
  end
end