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

defmodule Pleroma.Web.ManifestController do
  use Pleroma.Web, :controller

  plug(:skip_auth when action == :show)

  @doc "GET /manifest.json"
  def show(conn, _params) do
    render(conn, "manifest.json")
  end
end