UNPKG

routing-controllers

Version:

Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage for Express / Koa using TypeScript.

20 lines 807 B
import { getMetadataArgsStorage } from '../index'; /** * Injects a Session object to the controller action parameter. * Must be applied on a controller action parameter. */ export function Session(options) { return function (object, methodName, index) { getMetadataArgsStorage().params.push({ type: 'session', object: object, method: methodName, index: index, parse: false, // it makes no sense for Session object to be parsed as json required: options && options.required !== undefined ? options.required : true, classTransform: options && options.transform, validate: options && options.validate !== undefined ? options.validate : false, }); }; } //# sourceMappingURL=Session.js.map