Fix MRF policies to also work with Update
[akkoma] / lib / pleroma / web / manifest_controller.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 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