logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

manifest_controller.ex (377B)


  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. defmodule Pleroma.Web.ManifestController do
  5. use Pleroma.Web, :controller
  6. plug(:skip_auth when action == :show)
  7. @doc "GET /manifest.json"
  8. def show(conn, _params) do
  9. render(conn, "manifest.json")
  10. end
  11. end