remove circular dependencies

This commit is contained in:
Art Lowel
2020-08-28 11:34:17 +02:00
parent cc618ebadd
commit 21e8879f77
84 changed files with 415 additions and 373 deletions

View File

@@ -8,7 +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 { getForgotPasswordPath, getRegisterPath } from '../../app-routing.module';
import { getForgotPasswordRoute, getRegisterRoute } from '../../app-routing-paths';
/**
* /users/sign-in
@@ -83,11 +83,11 @@ export class LogInComponent implements OnInit, OnDestroy {
this.alive = false;
}
getRegisterPath() {
return getRegisterPath();
getRegisterRoute() {
return getRegisterRoute();
}
getForgotPath() {
return getForgotPasswordPath();
getForgotRoute() {
return getForgotPasswordRoute();
}
}