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

9 lines
266 B
TypeScript
Raw Normal View History

2022-08-27 08:59:26 +00:00
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[]) =>
SetMetadata('privileges', privileges);