unsetOnHoldByRoomId(roomId: string): Promise<UpdateResult> {
        return this.updateOne({ _id: roomId }, { $unset: { onHold: 1 } });
    }