mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-08-04 00:41:56 +02:00
+ New, more detailed user event log entries that can be summed/etc.
* Last callers indicators now use new user event log entries
This commit is contained in:
parent
7c6e3e3ad4
commit
dc70521057
5 changed files with 102 additions and 32 deletions
21
core/user_log_name.js
Normal file
21
core/user_log_name.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
/* jslint node: true */
|
||||
'use strict';
|
||||
|
||||
//
|
||||
// Common (but not all!) user log names
|
||||
//
|
||||
module.exports = {
|
||||
NewUser : 'new_user',
|
||||
Login : 'login',
|
||||
Logoff : 'logoff',
|
||||
UlFiles : 'ul_files', // value=count
|
||||
UlFileBytes : 'ul_file_bytes', // value=total bytes
|
||||
DlFiles : 'dl_files', // value=count
|
||||
DlFileBytes : 'dl_file_bytes', // value=total bytes
|
||||
PostMessage : 'post_msg', // value=areaTag
|
||||
SendMail : 'send_mail',
|
||||
RunDoor : 'run_door',
|
||||
SendNodeMsg : 'send_node_msg', // value=global|direct
|
||||
AchievementEarned : 'achievement_earned', // value=achievementTag
|
||||
AchievementPointsEarned : 'achievement_pts_earned', // value=points earned
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue