diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/src/config.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/src/config.rs b/common/src/config.rs index 4ff1477..d7682df 100644 --- a/common/src/config.rs +++ b/common/src/config.rs @@ -17,7 +17,6 @@ pub struct GlobalConfig { #[serde(default = "return_true" )] pub tls: bool, #[serde(default = "default::asset_path")] pub asset_path: PathBuf, #[serde(default = "default::database_path")] pub database_path: PathBuf, - #[serde(default = "default::temp_path")] pub temp_path: PathBuf, #[serde(default = "default::cache_path")] pub cache_path: PathBuf, #[serde(default = "default::media_path")] pub media_path: PathBuf, #[serde(default = "default::secrets_path")] pub secrets_path: PathBuf, @@ -81,9 +80,6 @@ mod default { pub fn secrets_path() -> PathBuf { "data/secrets.yaml".into() } - pub fn temp_path() -> PathBuf { - "/tmp".into() - } pub fn max_in_memory_cache_size() -> usize { 50_000_000 } |