removed template strings
gitea/salix/dev This commit looks good Details

This commit is contained in:
Joan Sanchez 2019-04-30 14:25:07 +02:00
parent c68015fb88
commit 3615fe36a8
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ module.exports = Self => {
root: true root: true
}, },
http: { http: {
path: `/:ref/book`, path: '/:ref/book',
verb: 'POST' verb: 'POST'
} }
}); });

View File

@ -15,7 +15,7 @@ module.exports = Self => {
root: true root: true
}, },
http: { http: {
path: `/:id/delete`, path: '/:id/delete',
verb: 'POST' verb: 'POST'
} }
}); });

View File

@ -14,7 +14,7 @@ module.exports = Self => {
root: true root: true
}, },
http: { http: {
path: `/:id/regenerate`, path: '/:id/regenerate',
verb: 'POST' verb: 'POST'
} }
}); });