feat: add alsoKnownAs field to federation settings
Some checks failed
lint / lint (push) Failing after 7m10s
test / unit (push) Successful in 16m28s
test / integration (push) Failing after 17m52s

This commit is contained in:
2026-05-28 02:01:56 +02:00
parent 1ad02e0806
commit c30243f1c8
3 changed files with 67 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import { cookies } from "next/headers";
import { redirect } from "next/navigation";
import { FederationPanel } from "@/components/federation/federation-panel";
import { MigrationSettings } from "@/components/federation/migration-settings";
export default async function FederationSettingsPage() {
const token = (await cookies()).get("auth_token")?.value;
@@ -18,6 +19,7 @@ export default async function FederationSettingsPage() {
</p>
</div>
<FederationPanel />
<MigrationSettings />
</div>
);
}