summaryrefslogtreecommitdiffstats
path: root/models/actions.js
diff options
context:
space:
mode:
authorAngelo Gallarello <angelo.gallarell@gmail.com>2018-09-12 00:52:29 +0200
committerAngelo Gallarello <angelo.gallarell@gmail.com>2018-09-12 00:52:29 +0200
commit34b37116cf8c618a4ea12b13d969c24654f4248b (patch)
tree287193373538fb0c0e6e7d634a21c6e5f85b3811 /models/actions.js
parent1f5f429fc4535d251d32335eea7e44904a924650 (diff)
downloadwekan-34b37116cf8c618a4ea12b13d969c24654f4248b.tar.gz
wekan-34b37116cf8c618a4ea12b13d969c24654f4248b.tar.bz2
wekan-34b37116cf8c618a4ea12b13d969c24654f4248b.zip
Fixed rule allows
Diffstat (limited to 'models/actions.js')
-rw-r--r--models/actions.js45
1 files changed, 6 insertions, 39 deletions
diff --git a/models/actions.js b/models/actions.js
index daa5cc96..da9b30fb 100644
--- a/models/actions.js
+++ b/models/actions.js
@@ -1,52 +1,19 @@
Actions = new Mongo.Collection('actions');
-
-Actions.mutations({
- rename(description) {
- return { $set: { description } };
- },
-});
-
Actions.allow({
- update: function () {
- // add custom authentication code here
- return true;
+ insert(userId, doc) {
+ return allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
},
- insert: function () {
- // add custom authentication code here
- return true;
+ update(userId, doc) {
+ return allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
},
- remove: function () {
- // add custom authentication code here
- return true;
+ remove(userId, doc) {
+ return allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
}
});
-Actions.helpers({
- fromList() {
- return Lists.findOne(this.fromId);
- },
-
- toList() {
- return Lists.findOne(this.toId);
- },
-
- findList(title) {
- return Lists.findOne({title:title});
- },
-
- labels() {
- const boardLabels = this.board().labels;
- const cardLabels = _.filter(boardLabels, (label) => {
- return _.contains(this.labelIds, label._id);
- });
- return cardLabels;
- }});
-
-
-