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

Start to wrap incoming stream

This commit is contained in:
2020-06-20 10:31:58 +02:00
parent c551c2d764
commit 32b6c95e9f
4 changed files with 101 additions and 19 deletions

View File

@@ -37,4 +37,7 @@ pub mod database_tables_names {
pub const DEFAULT_ACCOUNT_IMAGE: &str = "avatars/0Reverse.png";
/// The account image to show for users who are not allowed to access other users account images
pub const ERROR_ACCOUNT_IMAGE: &str = "avatars/0Red.png";
pub const ERROR_ACCOUNT_IMAGE: &str = "avatars/0Red.png";
/// Maximum requests size (50 Mo)
pub const MAX_REQUEST_SIZE: u64 = 50000000;