forked from FoundKeyGang/FoundKey
backend: translate comments in const.ts
This commit is contained in:
parent
def5eb0d2e
commit
9084864b34
1 changed files with 3 additions and 3 deletions
|
@ -8,9 +8,9 @@ export const DAY = 24 * HOUR;
|
||||||
export const USER_ONLINE_THRESHOLD = 1000 * 60 * 10; // 10min
|
export const USER_ONLINE_THRESHOLD = 1000 * 60 * 10; // 10min
|
||||||
export const USER_ACTIVE_THRESHOLD = 1000 * 60 * 60 * 24 * 3; // 3days
|
export const USER_ACTIVE_THRESHOLD = 1000 * 60 * 60 * 24 * 3; // 3days
|
||||||
|
|
||||||
// ブラウザで直接表示することを許可するファイルの種類のリスト
|
// List of file types allowed to be viewed directly in the browser.
|
||||||
// ここに含まれないものは application/octet-stream としてレスポンスされる
|
// Anything not included here will be reported as application/octet-stream
|
||||||
// SVGはXSSを生むので許可しない
|
// SVG is not allowed because it can lead to XSS
|
||||||
export const FILE_TYPE_BROWSERSAFE = [
|
export const FILE_TYPE_BROWSERSAFE = [
|
||||||
// Images
|
// Images
|
||||||
'image/png',
|
'image/png',
|
||||||
|
|
Loading…
Reference in a new issue