removed template strings
gitea/salix/dev This commit looks good
Details
gitea/salix/dev This commit looks good
Details
This commit is contained in:
parent
c68015fb88
commit
3615fe36a8
|
@ -15,7 +15,7 @@ module.exports = Self => {
|
|||
root: true
|
||||
},
|
||||
http: {
|
||||
path: `/:ref/book`,
|
||||
path: '/:ref/book',
|
||||
verb: 'POST'
|
||||
}
|
||||
});
|
||||
|
|
|
@ -15,7 +15,7 @@ module.exports = Self => {
|
|||
root: true
|
||||
},
|
||||
http: {
|
||||
path: `/:id/delete`,
|
||||
path: '/:id/delete',
|
||||
verb: 'POST'
|
||||
}
|
||||
});
|
||||
|
|
|
@ -14,7 +14,7 @@ module.exports = Self => {
|
|||
root: true
|
||||
},
|
||||
http: {
|
||||
path: `/:id/regenerate`,
|
||||
path: '/:id/regenerate',
|
||||
verb: 'POST'
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue