mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 13:07:17 -04:00
48 lines
872 B
JavaScript
48 lines
872 B
JavaScript
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));
|
|
},
|
|
});
|