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

Add minimal supported version in application configuration

This commit is contained in:
2021-02-20 09:07:30 +01:00
parent 6ab6278bd4
commit 050d241695
2 changed files with 7 additions and 2 deletions

View File

@@ -159,4 +159,7 @@ pub const USER_ACCESS_TOKEN_ACTIVITY_REFRESH: Duration = Duration::from_secs(60
pub const INITIAL_REFRESH_LOAD_INTERVAL: Duration = Duration::from_secs(5);
/// Interval between each cleanup operation (every hour)
pub const CLEAN_UP_INTERVAL: Duration = Duration::from_secs(60 * 60);
pub const CLEAN_UP_INTERVAL: Duration = Duration::from_secs(60 * 60);
/// Minimal mobile version supported
pub const MIN_SUPPORTED_MOBILE_VERSION: &str = "1.1.1";