1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-09-25 22:29:45 +00:00

Added new values

This commit is contained in:
2021-03-08 17:54:45 +01:00
parent 21669c5a02
commit 1782647f8c
2 changed files with 13 additions and 2 deletions

View File

@@ -191,4 +191,10 @@ pub const ALLOWED_CONVERSATION_FILES_TYPES: [&str; 17] = [
];
/// File maximum size in conversations (10 Mb)
pub const CONVERSATION_FILES_MAX_SIZE: usize = 10 * 1024 * 1024;
pub const CONVERSATION_FILES_MAX_SIZE: usize = 10 * 1024 * 1024;
/// Minimum interval before notifying again that someone is writing
pub const CONVERSATION_WRITING_EVENT_INTERVAL: u64 = 1;
/// Lifetime of conversation writing event
pub const CONVERSATION_WRITING_EVENT_LIFETIME: u64 = 3;