make demo site work out of the box

This commit is contained in:
Thomas Amland
2020-07-26 16:12:31 +02:00
parent e8b95e32ba
commit d46ba950e7
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -8,8 +8,8 @@ export class AuthService {
private authenticated: boolean = false;
constructor() {
this.server = localStorage.getItem("server") || "";
this.username = localStorage.getItem("username") || "";
this.server = localStorage.getItem("server") || "/api";
this.username = localStorage.getItem("username") || "guest1";
this.password = localStorage.getItem("password") || "";
}