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