Move LiveDashboard to /pleroma/live_dashboard

This commit is contained in:
Phantasm 2026-01-09 11:41:12 +01:00 committed by Henry Jameson
commit f6c410b06c
5 changed files with 15 additions and 5 deletions

View file

@ -77,6 +77,10 @@ defmodule Pleroma.Web.FallbackTest do
assert redirected_to(get(conn, "/pleroma/admin")) =~ "/pleroma/admin/"
end
test "GET /phoenix/live_dashboard -> /pleroma/live_dashboard", %{conn: conn} do
assert redirected_to(get(conn, "/phoenix/live_dashboard")) =~ "/pleroma/live_dashboard"
end
test "OPTIONS /*path", %{conn: conn} do
assert conn
|> options("/foo")