diff options
Diffstat (limited to 'common/src')
-rw-r--r-- | common/src/config.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/src/config.rs b/common/src/config.rs index 200249c..a520fe0 100644 --- a/common/src/config.rs +++ b/common/src/config.rs @@ -29,6 +29,7 @@ pub struct GlobalConfig { #[serde(default = "default::login_expire")] pub login_expire: i64, #[serde(default)] pub remote_credentials: HashMap<String, (String, String, bool)>, #[serde(default)] pub default_permission_set: PermissionSet, + #[serde(default)] pub tmdb_api_key: Option<String>, } mod default { |