40 lines
728 B
TypeScript
40 lines
728 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
export const MAX_FILE_SIZE = 5 * 1024 * 1024; // 5MB
|
|
|
|
export const ACCEPTED_AVATAR_IMAGE_MIME_TYPES_FOR_REACT_DROPZONE = {
|
|
"image/jpeg": [],
|
|
"image/jpg": [],
|
|
"image/png": [],
|
|
"image/webp": [],
|
|
};
|
|
export const ACCEPTED_COVER_IMAGE_MIME_TYPES_FOR_REACT_DROPZONE = {
|
|
"image/jpeg": [],
|
|
"image/jpg": [],
|
|
"image/png": [],
|
|
"image/webp": [],
|
|
};
|
|
|
|
/**
|
|
* Dangerous file extensions that should be blocked
|
|
*/
|
|
export const DANGEROUS_EXTENSIONS = [
|
|
"exe",
|
|
"bat",
|
|
"cmd",
|
|
"sh",
|
|
"php",
|
|
"asp",
|
|
"aspx",
|
|
"jsp",
|
|
"cgi",
|
|
"dll",
|
|
"vbs",
|
|
"jar",
|
|
"ps1",
|
|
];
|