This commit is contained in:
Bastian Wagner
2024-10-18 16:52:58 +02:00
parent ed6b2b9c45
commit 76e54cfaa0
32 changed files with 552 additions and 7 deletions

View File

@@ -32,7 +32,6 @@ export class AuthService {
}
get isAdmin(): boolean {
console.log(this.user, this.user.role == 'admin')
return this.user != null && this.user.role == 'admin';
}