1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ManifestController do
6 use Pleroma.Web, :controller
8 plug(:skip_auth when action == :show)
10 @doc "GET /manifest.json"
11 def show(conn, _params) do
12 render(conn, "manifest.json")