File

src/guards/is-guest-user.guard.ts

Index

Methods

Constructor

constructor(authService: AuthService, router: Router)
Parameters :
Name Type Optional
authService AuthService No
router Router No

Methods

Async canLoad
canLoad()
Returns : Promise<boolean>
import { Injectable, Inject } from '@angular/core';
import { CanLoad, Router } from '@angular/router';
import { AuthService } from 'sunbird-sdk';

@Injectable()
export class IsGuestUserGuard implements CanLoad {
    constructor(
        @Inject('AUTH_SERVICE') private authService: AuthService,
        private router: Router
    ) {
    }

    async canLoad(): Promise<boolean> {
        if (!(await this.authService.getSession().toPromise())) {
            return true;
        }

        this.router.navigate(['/', 'profile-settings']);
        return false;
    }
}

results matching ""

    No results matching ""