UNPKG

@elsikora/nestjs-crud-automator

Version:

A library for automating the creation of CRUD operations in NestJS.

17 lines (13 loc) 596 B
'use strict'; var metadataKey_constant = require('./metadata-key.constant.js'); /** * Stores a compiled generated GET identity plan on controller method metadata. * @param {object} handler - Exact generated handler function. * @param {IApiControllerIdentityPlan} plan - Compiled identity plan. * @returns {void} */ function ApiControllerIdentityPlanSet(handler, plan) { Reflect.defineMetadata(metadataKey_constant.API_CONTROLLER_IDENTITY_PLAN_METADATA_KEY, plan, handler); } exports.ApiControllerIdentityPlanSet = ApiControllerIdentityPlanSet; //# sourceMappingURL=set.utility.js.map