mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
44 lines
No EOL
767 B
JavaScript
44 lines
No EOL
767 B
JavaScript
/**
|
|
* The global namespace/collection for Posts.
|
|
* @namespace Posts
|
|
*/
|
|
Posts = new Mongo.Collection("posts");
|
|
|
|
/**
|
|
* Posts config namespace
|
|
* @type {Object}
|
|
*/
|
|
Posts.config = {};
|
|
|
|
|
|
/**
|
|
* Post Statuses
|
|
*/
|
|
Posts.config.postStatuses = [
|
|
{
|
|
value: 1,
|
|
label: function(){return i18n.t('pending');}
|
|
},
|
|
{
|
|
value: 2,
|
|
label: function(){return i18n.t('approved');}
|
|
},
|
|
{
|
|
value: 3,
|
|
label: function(){return i18n.t('rejected');}
|
|
},
|
|
{
|
|
value: 4,
|
|
label: function(){return i18n.t('spam');}
|
|
},
|
|
{
|
|
value: 5,
|
|
label: function(){return i18n.t('deleted');}
|
|
}
|
|
];
|
|
|
|
Posts.config.STATUS_PENDING = 1;
|
|
Posts.config.STATUS_APPROVED = 2;
|
|
Posts.config.STATUS_REJECTED = 3;
|
|
Posts.config.STATUS_SPAM = 4;
|
|
Posts.config.STATUS_DELETED = 5; |