routing-controllers
Version:
Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage for Express / Koa using TypeScript.
19 lines • 573 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Location = Location;
const index_1 = require("../index");
/**
* Sets Location header with given value to the response.
* Must be applied on a controller action.
*/
function Location(url) {
return function (object, methodName) {
(0, index_1.getMetadataArgsStorage)().responseHandlers.push({
type: 'location',
target: object.constructor,
method: methodName,
value: url,
});
};
}
//# sourceMappingURL=Location.js.map
;