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

defmodule Pleroma.Plugs.ExpectPublicOrAuthenticatedCheckPlug do
  @moduledoc """
  Marks `Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug` as expected to be executed later in plug
  chain.

  No-op plug which affects `Pleroma.Web` operation (is checked with `PlugHelper.plug_called?/2`).
  """

  use Pleroma.Web, :plug

  def init(options), do: options

  @impl true
  def perform(conn, _) do
    conn
  end
end