1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Fix dependency build error, rename operation modifier

This commit is contained in:
NG (Graham)
2025-06-14 17:57:34 -04:00
parent 180c14542c
commit 33aab8f870
12 changed files with 48 additions and 45 deletions

View File

@@ -14,7 +14,7 @@ use polariton_server::operations::OperationsHandler;
pub fn handler(chat_system: crate::state::chat::ChatImpl, conf: &oj_rc_core::persist::config::ConfigImpl) -> OperationsHandler<crate::UserTy> {
OperationsHandler::new()
.modify(oj_rc_core::polariton::OpIdCopy)
.modify(oj_rc_core::polariton::RcOpModifier)
.add(more_auth::MoreLobbyAuth::new(chat_system.clone()))
.add(chat_ignores::ignores_provider())
.add(pending_sanctions::pending_sanctions_checker())

View File

@@ -37,7 +37,7 @@ impl MoreLobbyAuth {
let name = user_impl.token().uuid.clone();
//let chat_user = super::get_chat_user(user_impl.as_ref().as_ref());
let channels = user_impl.subscribed_channels_strings().await?;
let event_tx = user.event_sender();
let event_tx = user.event_chann();
self.chat_system.system_mut().connect_user(name, channels, event_tx);
let mut resp_params = std::collections::HashMap::new();
resp_params.insert(Self::AUTH_PAYLOAD_KEY, polariton::operation::Typed::Byte(0));