mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
6 lines
221 B
JavaScript
6 lines
221 B
JavaScript
![]() |
Template[getTemplate('postCommenters')].helpers({
|
||
|
commenters: function () {
|
||
|
// remove post author ID from commenters to avoid showing author's avatar again
|
||
|
return _.without(this.commenters, this.userId);
|
||
|
}
|
||
|
});
|