summaryrefslogtreecommitdiffstats
path: root/models/actions.js
diff options
context:
space:
mode:
authorAngelo Gallarello <angelo.gallarell@gmail.com>2018-09-14 17:35:14 +0200
committerAngelo Gallarello <angelo.gallarell@gmail.com>2018-09-14 17:35:14 +0200
commit30a3daa6af179009ac17b40a71bf3f9e9b1d698a (patch)
tree16e2ecdc589aa67367f3d53a44c1eaba8ba1f637 /models/actions.js
parentfc73dc5bbcbbd203efc4f10ecb4bd1a66e0d9efb (diff)
downloadwekan-30a3daa6af179009ac17b40a71bf3f9e9b1d698a.tar.gz
wekan-30a3daa6af179009ac17b40a71bf3f9e9b1d698a.tar.bz2
wekan-30a3daa6af179009ac17b40a71bf3f9e9b1d698a.zip
Finished alpha rules
Diffstat (limited to 'models/actions.js')
-rw-r--r--models/actions.js80
1 files changed, 1 insertions, 79 deletions
diff --git a/models/actions.js b/models/actions.js
index fd1d03e0..8062b545 100644
--- a/models/actions.js
+++ b/models/actions.js
@@ -16,85 +16,7 @@ Actions.allow({
Actions.helpers({
description() {
- if(this.actionType == "moveCardToTop"){
- if(this.listTitle == "*"){
- return TAPi18n.__('r-d-move-to-top-gen');
- }else{
- return TAPi18n.__('r-d-move-to-top-spec') + " " + this.listTitle;
- }
- }
- if(this.actionType == "moveCardToBottom"){
- if(this.listTitle == "*"){
- return TAPi18n.__('r-d-move-to-bottom-gen');
- }else{
- return TAPi18n.__('r-d-move-to-bottom-spec') + " " + this.listTitle;
- }
- }
- if(this.actionType == "sendEmail"){
- const to = " " + TAPi18n.__('r-d-send-email-to') + ": " + this.emailTo + ", ";
- const subject = TAPi18n.__('r-d-send-email-subject') + ": " + this.emailSubject + ", ";
- const message = TAPi18n.__('r-d-send-email-message') + ": " + this.emailMsg;
- const total = TAPi18n.__('r-d-send-email') + to + subject + message;
- return total;
- }
- if(this.actionType == "archive"){
- return TAPi18n.__('r-d-archive');
- }
- if(this.actionType == "unarchive"){
- return TAPi18n.__('r-d-unarchive');
- }
- if(this.actionType == "addLabel"){
- const board = Boards.findOne(Session.get('currentBoard'));
- const label = board.getLabelById(this.labelId);
- let name;
- if(label.name == "" || label.name == undefined){
- name = label.color.toUpperCase();
- }else{
- name = label.name;
- }
-
- return TAPi18n.__('r-d-add-label') + ": "+name;
- }
- if(this.actionType == "removeLabel"){
- const board = Boards.findOne(Session.get('currentBoard'));
- const label = board.getLabelById(this.labelId);
- let name;
- if(label.name == "" || label.name == undefined){
- name = label.color.toUpperCase();
- }else{
- name = label.name;
- }
- return TAPi18n.__('r-d-remove-label') + ": " + name;
- }
- if(this.actionType == "addMember"){
- return TAPi18n.__('r-d-add-member') + ": " + this.memberName;
- }
- if(this.actionType == "removeMember"){
- if(this.memberName == "*"){
- return TAPi18n.__('r-d-remove-all-member');
- }
- return TAPi18n.__('r-d-remove-member') + ": "+ this.memberName;
- }
- if(this.actionType == "checkAll"){
- return TAPi18n.__('r-d-check-all') + ": " + this.checklistName;
- }
- if(this.actionType == "uncheckAll"){
- return TAPi18n.__('r-d-uncheck-all') + ": "+ this.checklistName;
- }
- if(this.actionType == "checkItem"){
- return TAPi18n.__('r-d-check-one') + ": "+ this.checkItemName + " " + TAPi18n.__('r-d-check-of-list') + ": " +this.checklistName;
- }
- if(this.actionType == "uncheckItem"){
- return TAPi18n.__('r-d-check-one') + ": "+ this.checkItemName + " " + TAPi18n.__('r-d-check-of-list') + ": " +this.checklistName;
- }
- if(this.actionType == "addChecklist"){
- return TAPi18n.__('r-d-add-checklist') + ": "+ this.checklistName;
- }
- if(this.actionType == "removeChecklist"){
- return TAPi18n.__('r-d-remove-checklist') + ": "+ this.checklistName;
- }
-
- return "Ops not trigger description";
+ return this.desc;
}
});