const notifyNewRoom = async (sub: AtLeast<ISubscription, 'rid'>): Promise<void> => {
    const user = Meteor.user() as IUser | null;
    if (!user || user.status === 'busy') {
        return;
    }