UI for rules list

This commit is contained in:
Angelo Gallarello 2018-08-03 19:47:20 +02:00
parent d5870472fb
commit f63482b587
19 changed files with 256 additions and 2 deletions

38
models/rules.js Normal file
View file

@ -0,0 +1,38 @@
Rules = new Mongo.Collection('rules');
Rules.attachSchema(new SimpleSchema({
title: {
type: String,
optional: true,
},
description: {
type: String,
optional: true,
},
}));
Rules.mutations({
rename(description) {
return { $set: { description } };
},
});
Rules.allow({
update: function () {
// add custom authentication code here
return true;
},
});
if (Meteor.isServer) {
Meteor.startup(() => {
const rules = Rules.findOne({});
if(!rules){
Rules.insert({title: "regola1", description: "bella"});
Rules.insert({title: "regola2", description: "bella2"});
}
});
}