ES6 class for generic controller
This commit is contained in:
parent
a63c79fdd8
commit
88451f824f
@ -1,14 +1,7 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
function GenericController() {
|
module.exports = class GenericController {
|
||||||
|
route (app) {
|
||||||
|
app.options('*', (req, res) => res.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
GenericController.prototype.route = function (app) {
|
|
||||||
app.options('*', this.handleRequest.bind(this));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
GenericController.prototype.handleRequest = function(req, res) {
|
|
||||||
res.end();
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = GenericController;
|
|
||||||
|
Loading…
Reference in New Issue
Block a user