Move LiveDashboard to /pleroma/live_dashboard

This commit is contained in:
Phantasm 2026-01-09 11:41:12 +01:00
commit 5e114931f5
No known key found for this signature in database
GPG key ID: 2669E588BCC634C8
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")