UNPKG

@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

7 lines (6 loc) 144 B
export interface User<Group extends string = string> { netId?: string; email: string; memberOf: Group[]; displayName: string; }