diff --git a/conduwuit-example.toml b/conduwuit-example.toml index ea5e83ac..616b96ce 100644 --- a/conduwuit-example.toml +++ b/conduwuit-example.toml @@ -58,7 +58,11 @@ # #port = 8008 -# The UNIX socket continuwuity will listen on. +# This item is undocumented. Please contribute documentation for it. +# +#auth = + +# The UNIX socket conduwuit will listen on. # # continuwuity cannot listen on both an IP address and a UNIX socket. If # listening on a UNIX socket, you MUST remove/comment the `address` key. diff --git a/src/service/services.rs b/src/service/services.rs index aaa7d941..52beb898 100644 --- a/src/service/services.rs +++ b/src/service/services.rs @@ -15,7 +15,7 @@ use crate::{ manager::Manager, media, moderation, presence, pusher, resolver, rooms, sending, server_keys, service, service::{Args, Map, Service}, - sync, transaction_ids, uiaa, users, + sync, transaction_ids, uiaa, users, oidc, }; pub struct Services { @@ -41,6 +41,7 @@ pub struct Services { pub users: Arc, pub moderation: Arc, pub announcements: Arc, + pub oidc: Arc, manager: Mutex>>, pub(crate) service: Arc,