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