aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-12-22 16:01:58 +0100
committermetamuffin <metamuffin@disroot.org>2023-12-22 16:01:58 +0100
commitb14f5d3f194aa96d32fa4ced2e7cc5fc705ef22d (patch)
tree750f5fc3d44bb300cef1552e3106f4dac9498f8e /common
parent80e545d06c4a0f0841d4b40e3aff479ef8d864f9 (diff)
downloadjellything-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.rs1
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 {