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

8 lines
243 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 OAuth2 scopes. AND logic!
* @param scopes List of scopes for this route
*/
export const Scopes = (...scopes: string[]) => SetMetadata('scopes', scopes);