import { SetMetadata } from "@nestjs/common"; export const WITH_ROLE = "withRole"; /** * Set a flag on the route handler to indicate that the user's * roles should be checked before the handler is invoked. * @returns CustomDecorator */ export function Role() { return SetMetadata(WITH_ROLE, true); }