blob: adf5ef6a0cb06b2083cf270abad48afd76023870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Blaze.registerHelper('currentBoard', () => {
const boardId = Session.get('currentBoard');
if (boardId) {
return Boards.findOne(boardId);
}
});
Blaze.registerHelper('currentCard', () => {
const cardId = Session.get('currentCard');
if (cardId) {
return Cards.findOne(cardId);
}
});
Blaze.registerHelper('getUser', (userId) => Users.findOne(userId));
UI.registerHelper('concat', function (...args) {
return Array.prototype.slice.call(args, 0, -1).join('');
});
|