mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
872 B
48 lines
872 B
Rules = new Mongo.Collection('rules');
|
|
|
|
Rules.attachSchema(new SimpleSchema({
|
|
title: {
|
|
type: String,
|
|
optional: false,
|
|
},
|
|
triggerId: {
|
|
type: String,
|
|
optional: false,
|
|
},
|
|
actionId: {
|
|
type: String,
|
|
optional: false,
|
|
},
|
|
boardId: {
|
|
type: String,
|
|
optional: false,
|
|
},
|
|
}));
|
|
|
|
Rules.mutations({
|
|
rename(description) {
|
|
return { $set: { description } };
|
|
},
|
|
});
|
|
|
|
Rules.helpers({
|
|
getAction(){
|
|
return Actions.findOne({_id:this.actionId});
|
|
},
|
|
getTrigger(){
|
|
return Triggers.findOne({_id:this.triggerId});
|
|
},
|
|
});
|
|
|
|
|
|
Rules.allow({
|
|
insert(userId, doc) {
|
|
return allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
|
|
},
|
|
update(userId, doc) {
|
|
return allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
|
|
},
|
|
remove(userId, doc) {
|
|
return allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
|
|
},
|
|
});
|
|
|