Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions meetup-backend/src/modules/groups/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ const GroupSchema = new Schema({
type: String,
required: true,
unique: true,
minLength: [5, 'Name must be 5 characters long'],
minlength: [5, 'Name must be 5 characters long'],
},
description: {
type: String,
required: true,
minLength: [10, 'Description must be 10 characters long'],
minlength: [10, 'Description must be 10 characters long'],
},
category: {
type: String,
Expand Down
4 changes: 2 additions & 2 deletions meetup-backend/src/modules/meetups/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ const MeetupSchema = new Schema({
title: {
type: String,
required: true,
minLength: [5, '5 characters long at least'],
minlength: [5, '5 characters long at least'],
},
description: {
type: String,
required: true,
minLength: [10, '10 characters long at least'],
minlength: [10, '10 characters long at least'],
},
eventDate: {
type: Date,
Expand Down
2 changes: 1 addition & 1 deletion meetupme-mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@appandflow/touchable": "^1.0.0",
"@expo/vector-icons": "~4.0.0",
"axios": "^0.16.0",
"expo": "^16.0.0",
"expo": "^27.0.2",
"moment": "^2.18.1",
"react": "16.0.0-alpha.6",
"react-native": "https://github.com/exponent/react-native/archive/sdk-16.0.0.tar.gz",
Expand Down