welcome screen

This commit is contained in:
2020-04-26 16:38:06 +02:00
committed by smuddy
parent 3b6bebcbac
commit 5d47c0c611
29 changed files with 538 additions and 16 deletions

View File

@@ -58,7 +58,7 @@ export class UserService {
await this.db.doc('users/' + userId).set({name, chordMode: 'onlyFirst'});
const dUser = await this.readUser(aUser.user.uid);
this._user$.next(dUser);
await this.router.navigateByUrl('/user/info');
await this.router.navigateByUrl('/brand/new-user');
}
private readUser$ = (uid) => this.db.doc$<User>('users/' + uid);