Guest access work

This commit is contained in:
N-Pex 2020-11-25 10:02:24 +01:00
parent a164571218
commit 5589131c86
5 changed files with 138 additions and 35 deletions

View file

@ -1,7 +1,8 @@
export default class User {
constructor(server, username, password) {
constructor(server, username, password, is_guest) {
this.server = server;
this.username = username;
this.password = password;
this.is_guest = is_guest || false
}
}