diff options
author | metamuffin <metamuffin@disroot.org> | 2023-12-22 16:01:58 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-12-22 16:01:58 +0100 |
commit | b14f5d3f194aa96d32fa4ced2e7cc5fc705ef22d (patch) | |
tree | 750f5fc3d44bb300cef1552e3106f4dac9498f8e /common | |
parent | 80e545d06c4a0f0841d4b40e3aff479ef8d864f9 (diff) | |
download | jellything-b14f5d3f194aa96d32fa4ced2e7cc5fc705ef22d.tar jellything-b14f5d3f194aa96d32fa4ced2e7cc5fc705ef22d.tar.bz2 jellything-b14f5d3f194aa96d32fa4ced2e7cc5fc705ef22d.tar.zst |
rework import system pt. 6: tmdb import
Diffstat (limited to 'common')
-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 { |