eduhack / chat-app-bootcamp

Our app for our coding bootcamp
GNU General Public License v3.0
0 stars 0 forks source link

Send message #1

Open jankapunkt opened 5 years ago

jankapunkt commented 5 years ago

There needs to me a server-side method, named sendMessage that accepts the following criteria:

{
  text: {
    type: String,
    min:1 ,
    max: 1000,
    regExp: ?
  }
}

The regEx is not defined yet, but need to meet the following criteria:

To learn regEx, see: https://regexr.com/