Skip to content

Commit

Permalink
fix: typo in auth for resources route
Browse files Browse the repository at this point in the history
  • Loading branch information
gweiying committed Mar 25, 2021
1 parent ddc0c54 commit fd3410c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion middleware/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ auth.get('/v1/sites/:siteName/resources', verifyJwt)
auth.post('/v1/sites/:siteName/resources', verifyJwt)
auth.delete('/v1/sites/:siteName/resources/:resourceName', verifyJwt)
auth.post('/v1/sites/:siteName/resources/:resourceName/rename/:newResourceName', verifyJwt)
auth.post('/v1/sites/:siteName/resources/:resourceRoomName/move/:newResourceRoomName', verifyJwt)
auth.post('/v1/sites/:siteName/resources/:resourceName/move/:newResourceName', verifyJwt)

// Settings
auth.get('/v1/sites/:siteName/settings', verifyJwt)
Expand Down

0 comments on commit fd3410c

Please sign in to comment.