Rename function

This commit is contained in:
Daniel García Aubert 2018-05-11 12:42:17 +02:00
parent 07dec2e641
commit 1bc017eac9

View File

@ -64,11 +64,11 @@ module.exports = class AnonymousMapController {
register (mapRouter) {
mapRouter.options('/');
mapRouter.get('/', this.composeCreateMapMiddleware());
mapRouter.post('/', this.composeCreateMapMiddleware());
mapRouter.get('/', this.middlewares());
mapRouter.post('/', this.middlewares());
}
composeCreateMapMiddleware () {
middlewares () {
const isTemplateInstantiation = false;
const useTemplateHash = false;
const includeQuery = true;