@seas-computing/nestjs-harvard-key
Version:
This repository provides a way to connect NestJS applications to HarvardKey and provide a rudimentary form of authorization (in the form of route guards) out of the box
9 lines (8 loc) • 339 B
TypeScript
import { CanActivate, ExecutionContext } from '@nestjs/common';
import { Observable } from 'rxjs';
declare class RequireGroup implements CanActivate {
private requiredGroup;
constructor(requiredGroup: string);
canActivate(context: ExecutionContext): boolean | Promise<boolean> | Observable<boolean>;
}
export { RequireGroup };