70504: Implement feedback

This commit is contained in:
Yana De Pauw
2020-05-15 14:41:14 +02:00
parent 96d76073ef
commit bca1e8bdd4
7 changed files with 28 additions and 14 deletions

View File

@@ -8,6 +8,7 @@ import { AuthMethod } from '../../core/auth/models/auth.method';
import { getAuthenticationMethods, isAuthenticated, isAuthenticationLoading } from '../../core/auth/selectors';
import { CoreState } from '../../core/core.reducers';
import { AuthService } from '../../core/auth/auth.service';
import { getRegisterPath } from '../../app-routing.module';
/**
* /users/sign-in
@@ -82,4 +83,7 @@ export class LogInComponent implements OnInit, OnDestroy {
this.alive = false;
}
getRegisterPath() {
return getRegisterPath();
}
}