blob: caafe29fda62b577a06750d28a3ca430ddf54609 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
BlazeComponent.extendComponent({
onCreated() {
this.subscribe('allRules');
},
rules() {
return Rules.find({});
},
events() {
return [{}];
},
}).register('rulesList');
|