2025-02-23 16:10:21 -05:00
|
|
|
mod more_auth;
|
2025-02-23 20:17:46 -05:00
|
|
|
mod chat_ignores;
|
|
|
|
|
mod pending_sanctions;
|
2025-03-01 16:22:57 -05:00
|
|
|
mod all_joined_channels;
|
2025-02-23 16:10:21 -05:00
|
|
|
|
|
|
|
|
use polariton_server::operations::OperationsHandler;
|
|
|
|
|
|
|
|
|
|
pub fn handler() -> OperationsHandler<crate::UserTy> {
|
|
|
|
|
OperationsHandler::new()
|
|
|
|
|
.without_state(more_auth::MoreLobbyAuth)
|
2025-02-23 20:17:46 -05:00
|
|
|
.without_state(chat_ignores::ignores_provider())
|
|
|
|
|
.without_state(pending_sanctions::pending_sanctions_checker())
|
2025-03-01 16:22:57 -05:00
|
|
|
.without_state(all_joined_channels::all_channels_provider())
|
2025-02-23 20:17:46 -05:00
|
|
|
//.without_state(polariton_server::operations::Ack::<00000, _>::default())
|
2025-02-23 16:10:21 -05:00
|
|
|
}
|