Skip to content

Commit

Permalink
test2 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mav-Ivan committed Sep 13, 2023
1 parent 8cca2c4 commit 08a25b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion models/quiz.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ let quizSchema = new Schema(
type: String,
required: [true, FIELD_CANNOT_BE_EMPTY('title')],
minLength: [1, FIELD_CANNOT_BE_SHORTER('title', 1)],
maxLength: [100, FIELD_CANNOT_BE_LONGER('title', 100)]
maxLength: [100, FIELD_CANNOT_BE_LONGER('title', 100)],
stupid: String
},
items: [
{
Expand Down

0 comments on commit 08a25b1

Please sign in to comment.