mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
12 lines
No EOL
191 B
JavaScript
12 lines
No EOL
191 B
JavaScript
BlazeComponent.extendComponent({
|
|
onCreated() {
|
|
this.subscribe('allRules');
|
|
},
|
|
|
|
rules() {
|
|
return Rules.find({});
|
|
},
|
|
events() {
|
|
return [{}];
|
|
},
|
|
}).register('rulesList'); |