UNPKG

nest-keycloak-connect

Version:
12 lines (11 loc) 417 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Scopes = exports.META_SCOPES = void 0; const common_1 = require("@nestjs/common"); exports.META_SCOPES = 'scopes'; /** * Keycloak Authorization Scopes. * @param scopes - scopes that are associated with the resource */ const Scopes = (...scopes) => (0, common_1.SetMetadata)(exports.META_SCOPES, scopes); exports.Scopes = Scopes;