2015-08-03 21:25:00 -04:00
|
|
|
import PostModel from 'discourse/models/post';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'extend-post-model',
|
|
|
|
initialize() {
|
|
|
|
PostModel.reopen({
|
2015-08-25 00:30:23 -04:00
|
|
|
postSpecificCountDFP: function() {
|
2015-08-04 00:52:58 -04:00
|
|
|
return this.get('post_number') === parseInt(Discourse.SiteSettings.dfp_nth_post_code);
|
2015-08-25 00:30:23 -04:00
|
|
|
}.property('post_number'),
|
|
|
|
|
|
|
|
postSpecificCountAdsense: function() {
|
2015-08-28 01:25:11 -04:00
|
|
|
return this.get('post_number') === parseInt(Discourse.SiteSettings.adsense_nth_post_code);
|
2015-08-27 22:21:40 -04:00
|
|
|
}.property('post_number'),
|
2015-08-03 21:25:00 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|