Skip to content

Commit

Permalink
Merge pull request #464 from sparcs-kaist/#463-bug-fix-objectidpattern
Browse files Browse the repository at this point in the history
#463 [Bug] ObjectId 검증 정규식 오타 수정
  • Loading branch information
withSang authored Feb 13, 2024
2 parents 2e6af9d + 117df69 commit 945c621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/docs/utils.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const objectIdPattern = `^[a-fA-F\d]{24}$`;
const objectIdPattern = `^[a-fA-F\\d]{24}$`;
const roomsPattern = {
rooms: {
name: RegExp(
Expand Down

0 comments on commit 945c621

Please sign in to comment.