2018-11-26 02:05:16 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
//
|
|
|
|
// Common SYSTEM/global properties/stats used throughout the system.
|
|
|
|
//
|
|
|
|
// This IS NOT a full list. Custom modules & the like can create
|
|
|
|
// their own!
|
|
|
|
//
|
|
|
|
module.exports = {
|
|
|
|
LoginCount : 'login_count',
|
2018-11-26 03:13:48 +00:00
|
|
|
LoginsToday : 'logins_today', // non-persistent
|
2018-11-26 02:05:16 +00:00
|
|
|
|
|
|
|
FileBaseAreaStats : 'file_base_area_stats', // object - see file_base_area.js::getAreaStats
|
|
|
|
FileUlTotalCount : 'ul_total_count',
|
|
|
|
FileUlTotalBytes : 'ul_total_bytes',
|
|
|
|
|
2018-11-26 03:13:48 +00:00
|
|
|
// begin +op non-persistent...
|
2018-11-26 02:05:16 +00:00
|
|
|
SysOpUsername : 'sysop_username',
|
|
|
|
SysOpRealName : 'sysop_real_name',
|
|
|
|
SysOpLocation : 'sysop_location',
|
|
|
|
SysOpAffiliations : 'sysop_affiliation',
|
|
|
|
SysOpSex : 'sysop_sex',
|
|
|
|
SysOpEmailAddress : 'sysop_email_address',
|
2018-11-26 03:13:48 +00:00
|
|
|
// end +op non-persistent
|
2018-11-26 02:05:16 +00:00
|
|
|
|
|
|
|
NextRandomRumor : 'random_rumor',
|
|
|
|
};
|