summaryrefslogtreecommitdiffstats
path: root/client/components/rules/rulesList.js
blob: d3923bf91424e51ddf46d7813b47844ba1bc48f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
BlazeComponent.extendComponent({
  onCreated() {
    this.subscribe('allRules');
  },

  rules() {
    const boardId = Session.get('currentBoard');
    return Rules.find({
      boardId,
    });
  },
  events() {
    return [{}];
  },
}).register('rulesList');