discourse-adplugin/assets/javascripts/initializers/extend-post-model.js.es6

17 lines
492 B
JavaScript

import PostModel from 'discourse/models/post';
export default {
name: 'extend-post-model',
initialize() {
PostModel.reopen({
postSpecificCountDFP: function() {
return this.get('post_number') === parseInt(Discourse.SiteSettings.dfp_nth_post_code);
}.property('post_number'),
postSpecificCountAdsense: function() {
return this.get('post_number') === parseInt(Discourse.SiteSettings.adsense_nth_post_code);
}.property('post_number'),
});
}
};