forked from jmug/stoatchat
Servers: Route for kicking a member.
This commit is contained in:
@@ -13,8 +13,11 @@ static HIVE: OnceCell<Hive> = OnceCell::new();
|
||||
|
||||
pub async fn init_hive() {
|
||||
let hive = MongodbPubSub::new(
|
||||
|ids, notification| {
|
||||
super::events::posthandle_hook(¬ification);
|
||||
|ids, notification: ClientboundNotification| {
|
||||
let notif = notification.clone();
|
||||
async_std::task::spawn(async move {
|
||||
super::events::posthandle_hook(¬if).await;
|
||||
});
|
||||
|
||||
if let Ok(data) = to_string(¬ification) {
|
||||
debug!("Pushing out notification. {}", data);
|
||||
|
||||
Reference in New Issue
Block a user