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

defmodule Pleroma.Plugs.AuthExpectedPlug do
  import Plug.Conn

  def init(options), do: options

  def call(conn, _) do
    put_private(conn, :auth_expected, true)
  end

  def auth_expected?(conn) do
    conn.private[:auth_expected]
  end
end