feat: Security

This commit is contained in:
2026-06-05 18:34:01 +02:00
parent ee293d7daf
commit 45675192a5
134 changed files with 4128 additions and 446 deletions

View File

@@ -260,9 +260,13 @@ export class DashboardComponent implements OnInit {
openInvite(): void {
const invite = this.inviteResult();
if (invite) {
this.router.navigate(['/invite', invite]);
if (!invite) {
return;
}
this.router.navigate(['/invite', invite.inviteId], {
queryParams: invite.sourceUrl ? { server: invite.sourceUrl } : undefined
});
}
serverInitial(server: ServerInfo): string {