Skip to content

Commit

Permalink
fix: users/me 유저권한 all 로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jimin52 committed Nov 27, 2023
1 parent 53da6fd commit 6878ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/v1/routes/users.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ router
.post('/create', create)
.patch('/update/:id', authValidate(roleSet.librarian), update)
.patch('/myupdate', authValidate(roleSet.all), myupdate)
.get('/me', authValidate(roleSet.service), mydata)
.get('/me', authValidate(roleSet.all), mydata)
.get('/EasterEgg', getVersion);

// .delete('/delete/:id', authValidate(roleSet.librarian), deleteUser);

0 comments on commit 6878ceb

Please sign in to comment.