Merge pull request 'flip the authentication state' (#15) from working into main
Docker Build and Release Upload / build (push) Successful in 1m20s
Docker Build and Release Upload / build (push) Successful in 1m20s
Reviewed-on: #15
This commit was merged in pull request #15.
This commit is contained in:
@@ -31,7 +31,7 @@ export class Authentication{
|
|||||||
}
|
}
|
||||||
|
|
||||||
get isLoggedIn(): boolean {
|
get isLoggedIn(): boolean {
|
||||||
return this._user.value.id == null ? true : false;
|
return this._user.value.id != null ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
get loggedInUser(): Account {
|
get loggedInUser(): Account {
|
||||||
|
|||||||
Reference in New Issue
Block a user