Switched to Lexican Rich Text editor. Got editor working. Need to test signup.

This commit is contained in:
2022-10-31 08:28:20 -07:00
parent cab09e59b9
commit 8196c02b4e
8 changed files with 285 additions and 43 deletions

View File

@@ -27,7 +27,10 @@ if(Meteor.isServer) {
Meteor.methods({
'workshops.add'(name, description, signupLimit) {
let signupSheet = [];
console.log(name)
console.log(description)
console.log(signupLimit)
check(name, String);
check(description, Match.Maybe(String));
// Match a positive integer or undefined/null.