peertube-plugin-livechat/shared/lib/emojis.ts

13 lines
727 B
TypeScript
Raw Permalink Normal View History

// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
//
// SPDX-License-Identifier: AGPL-3.0-only
// 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