Skip to content
Snippets Groups Projects
Commit 35d231f9 authored by David Noah Donges's avatar David Noah Donges
Browse files

Add dummy logout function to authentication service

parent 1206141a
No related merge requests found
......@@ -22,6 +22,10 @@ export class AuthenticationService {
return of(true);
}
logout() {
this.mockUser = null;
}
getUser(): Observable<User> {
return of(this.mockUser);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment