Implement Discord appeal functionality, including database schema, API endpoints, front-end form, and Discord message handling.

This commit is contained in:
2025-11-22 22:26:40 +01:00
parent 20ec3648c4
commit 7d59885395
30 changed files with 1143 additions and 38 deletions
@@ -45,6 +45,9 @@ export class AuthService {
}
private reloadUsername() {
if (window.location.hostname === 'localhost') {
this._username.set('developer');
}
this.loginService.getUsername().subscribe({
next: (username) => {
this._username.set(username.username);