final PostBoardMessage newMessage = PostBoardMessage.fromJson(content);
// Save the message in the database if possible, otherwise throw an exception
// We want the message to be associated with the project the user logged in to
if (!db.save(newMessage, s.getProject())) {
throw new WPISuiteException();
}
// Return the newly created message (this gets passed back to the client)
return newMessage;
}