forked from FoundKeyGang/FoundKey
backend: update THRESHOLD constants to use time constants
This commit is contained in:
parent
9084864b34
commit
c20352b22e
1 changed files with 3 additions and 2 deletions
|
@ -1,12 +1,13 @@
|
||||||
export const MAX_NOTE_TEXT_LENGTH = 3000;
|
export const MAX_NOTE_TEXT_LENGTH = 3000;
|
||||||
|
|
||||||
|
// Time constants
|
||||||
export const SECOND = 1000;
|
export const SECOND = 1000;
|
||||||
export const MINUTE = 60 * SECOND;
|
export const MINUTE = 60 * SECOND;
|
||||||
export const HOUR = 60 * MINUTE;
|
export const HOUR = 60 * MINUTE;
|
||||||
export const DAY = 24 * HOUR;
|
export const DAY = 24 * HOUR;
|
||||||
|
|
||||||
export const USER_ONLINE_THRESHOLD = 1000 * 60 * 10; // 10min
|
export const USER_ONLINE_THRESHOLD = 10 * MINUTE;
|
||||||
export const USER_ACTIVE_THRESHOLD = 1000 * 60 * 60 * 24 * 3; // 3days
|
export const USER_ACTIVE_THRESHOLD = 3 * DAY;
|
||||||
|
|
||||||
// List of file types allowed to be viewed directly in the browser.
|
// List of file types allowed to be viewed directly in the browser.
|
||||||
// Anything not included here will be reported as application/octet-stream
|
// Anything not included here will be reported as application/octet-stream
|
||||||
|
|
Loading…
Reference in a new issue