This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
peer-reviewing.route.ts 391 B
Newer Older
import { Route } from '@angular/router';
import { UserRouteAccessService } from 'app/core/auth/user-route-access.service';
import { PeerReviewingComponent } from './peer-reviewing.component';

export const peerReviewingRoute: Route = {
  path: 'peer-reviewing',
  component: PeerReviewingComponent,
  data: {
    pageTitle: 'Peer Reviewing',
  },
  canActivate: [UserRouteAccessService],
};