Commit 00666457 authored by Alexander.Trofimov's avatar Alexander.Trofimov

Добавил TT_ACTIVE_CONNECTION_AWS

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60823 954022d7-b5bf-4e40-9824-e11837661b57
parent 92033d20
......@@ -10,12 +10,13 @@
// tracking type by license type
var c_TrackingType = {
TT_USER_COUNT: 0, // by user count
TT_ACTIVE_CONNECTION: 1, // by active connections
TT_TIME_USAGE: 2, // by time of editing
TT_DOCUMENT_SESSION: 3, // by document editing session count
TT_USER_COUNT: 0, // by user count
TT_ACTIVE_CONNECTION: 1, // by active connections
TT_TIME_USAGE: 2, // by time of editing
TT_DOCUMENT_SESSION: 3, // by document editing session count
TT_NONE: 4, // no tracking
TT_USER_COUNT_2: 5 // by user count, without active/inactive detection
TT_USER_COUNT_2: 5, // by user count, without active/inactive detection
TT_ACTIVE_CONNECTION_AWS: 6 // by active connections (only on aws instance)
};
function CTrackFile(obj) {
......@@ -39,6 +40,7 @@
switch (this.trackingType) {
case c_TrackingType.TT_ACTIVE_CONNECTION:
case c_TrackingType.TT_ACTIVE_CONNECTION_AWS:
this.isPeriodicalyTracking = true;
this.isAliveTrackingOnly = false;
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment