mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-07-03 22:45:01 +00:00
Add contact email to server configuration
This commit is contained in:
@ -42,6 +42,7 @@ pub struct Config {
|
||||
pub serve_storage_file: bool,
|
||||
pub terms_url: String,
|
||||
pub privacy_policy_url: String,
|
||||
pub contact_email: String,
|
||||
pub play_store_url: String,
|
||||
pub android_direct_download_url: String,
|
||||
pub proxy: Option<String>,
|
||||
@ -131,6 +132,8 @@ impl Config {
|
||||
terms_url: Config::yaml_str(parsed, "terms-url"),
|
||||
privacy_policy_url: Config::yaml_str(parsed, "privacy-policy-url"),
|
||||
|
||||
contact_email: Config::yaml_str(parsed, "contact-email"),
|
||||
|
||||
play_store_url: Config::yaml_str(parsed, "play-store-url"),
|
||||
android_direct_download_url: Config::yaml_str(parsed, "android-direct-download-url"),
|
||||
|
||||
|
Reference in New Issue
Block a user