summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/plugs/ensure_user_key_plug.ex
blob: 70d3091f0268623735b1675d5a498e4108961ea9 (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.Web.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