mirror of
https://github.com/wekan/wekan.git
synced 2026-01-01 23:28:49 +01:00
Beautyfied
This commit is contained in:
parent
30a3daa6af
commit
25da8376ca
15 changed files with 715 additions and 461 deletions
|
|
@ -1,18 +1,18 @@
|
|||
Meteor.publish('rules', (ruleId) => {
|
||||
check(ruleId, String);
|
||||
return Rules.find({ _id: ruleId });
|
||||
check(ruleId, String);
|
||||
return Rules.find({
|
||||
_id: ruleId
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Meteor.publish('allRules', () => {
|
||||
return Rules.find({});
|
||||
return Rules.find({});
|
||||
});
|
||||
|
||||
|
||||
Meteor.publish('allTriggers', () => {
|
||||
return Triggers.find({});
|
||||
return Triggers.find({});
|
||||
});
|
||||
|
||||
Meteor.publish('allActions', () => {
|
||||
return Actions.find({});
|
||||
});
|
||||
return Actions.find({});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue