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

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