icynet-auth-server/src/decorators/privileges.decorator.ts

9 lines
279 B
TypeScript

import { SetMetadata } from '@nestjs/common';
/**
* Restrict this route to only these privileges. AND logic!
* @param privileges List of privileges for this route
*/
export const Privileges = (...privileges: (string | string[])[]) =>
SetMetadata('privileges', privileges);