summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/manifest_controller.ex
blob: 52589540bbf38340a23d168f44d71d0a66aba812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 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