mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-06 12:47:13 +02:00
More user/system stat constants & usage
This commit is contained in:
parent
e464f95924
commit
ec97b3e8d4
14 changed files with 99 additions and 53 deletions
25
core/system_property.js
Normal file
25
core/system_property.js
Normal file
|
@ -0,0 +1,25 @@
|
|||
/* 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',
|
||||
|
||||
FileBaseAreaStats : 'file_base_area_stats', // object - see file_base_area.js::getAreaStats
|
||||
FileUlTotalCount : 'ul_total_count',
|
||||
FileUlTotalBytes : 'ul_total_bytes',
|
||||
|
||||
SysOpUsername : 'sysop_username',
|
||||
SysOpRealName : 'sysop_real_name',
|
||||
SysOpLocation : 'sysop_location',
|
||||
SysOpAffiliations : 'sysop_affiliation',
|
||||
SysOpSex : 'sysop_sex',
|
||||
SysOpEmailAddress : 'sysop_email_address',
|
||||
|
||||
NextRandomRumor : 'random_rumor',
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue