0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 09:12:45 +00:00

Shift unlock and removeReview functions to use PUT

This commit is contained in:
G.Ambatte
2024-06-08 20:00:10 +12:00
parent 7830c7e2eb
commit 44f2e38387
2 changed files with 3 additions and 3 deletions

View File

@@ -186,7 +186,7 @@ router.post('/admin/lock/:id', mw.adminOnly, async (req, res)=>{
}
});
router.get('/admin/unlock/:id', mw.adminOnly, async (req, res)=>{
router.put('/admin/unlock/:id', mw.adminOnly, async (req, res)=>{
try {
const filter = {
shareId : req.params.id
@@ -260,7 +260,7 @@ router.put('/admin/lock/review/request/:id', async (req, res)=>{
}
});
router.get('/admin/lock/review/remove/:id', mw.adminOnly, async (req, res)=>{
router.put('/admin/lock/review/remove/:id', mw.adminOnly, async (req, res)=>{
try {
const filter = {
shareId : req.params.id,