2024-06-07 12:08:35 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2024-06-20 09:14:00 +00:00
|
|
|
// Note: API request body size is limited to 100Kb (expressjs body-parser defaut limit, and Peertube nginx config).
|
|
|
|
// So we must be sure to never send more than 100Kb. The front end sends new emojis by batch, but maxSize must remain
|
|
|
|
// as little as possible, so that we never reach 100Kb in JSON/base64 format.
|
2024-08-02 01:17:31 +00:00
|
|
|
export const maxSize: number = 800 * 1024
|
2024-06-06 09:36:07 +00:00
|
|
|
export const allowedExtensions = ['png', 'jpg', 'jpeg', 'gif']
|
|
|
|
export const inputFileAccept = ['image/jpg', 'image/png', 'image/gif']
|
|
|
|
export const allowedMimeTypes = ['image/jpg', 'image/png', 'image/gif']
|
2024-06-10 15:17:15 +00:00
|
|
|
export const maxEmojisPerChannel = 200
|