mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
No EOL
288 B
JavaScript
11 lines
No EOL
288 B
JavaScript
Template[getTemplate('postAdmin')].helpers({
|
|
postsMustBeApproved: function () {
|
|
return !!getSetting('requirePostsApproval');
|
|
},
|
|
isApproved: function(){
|
|
return this.status == STATUS_APPROVED;
|
|
},
|
|
shortScore: function(){
|
|
return Math.floor(this.score*1000)/1000;
|
|
}
|
|
}); |