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-06 13:03:12 +00:00
|
|
|
export const maxSize: number = 30 * 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
|