mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
Complete bare minimum to seem logged in
This commit is contained in:
@@ -3,6 +3,10 @@ mod friend_list;
|
||||
mod settings;
|
||||
mod clan_invite;
|
||||
mod clan_info;
|
||||
mod search_clan;
|
||||
mod season_rewards;
|
||||
mod previous_battle_rewards;
|
||||
mod platoon_data;
|
||||
|
||||
use polariton_server::operations::OperationsHandler;
|
||||
|
||||
@@ -16,4 +20,9 @@ pub fn handler() -> OperationsHandler<crate::UserTy> {
|
||||
.without_state(clan_invite::clan_invites_provider())
|
||||
.without_state(polariton_server::operations::Ack::<19, _>::default()) // get pending platoon invite (this is equivalent to having no pending invite)
|
||||
.without_state(clan_info::clan_info_provider())
|
||||
.without_state(search_clan::search_clans_provider())
|
||||
.without_state(polariton_server::operations::Ack::<52, _>::default()) // validate pending season rewards (this just always needs to be ack-ed)
|
||||
.without_state(season_rewards::season_rewards_provider())
|
||||
.without_state(previous_battle_rewards::pending_battle_rewards_provider())
|
||||
.without_state(platoon_data::platoon_provider())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user