protected getModerators(roomId: string, appId: string): Promise<IUser[]> {
        this.orch.debugLog(`The App ${appId} is getting room moderators for room id: ${roomId}`);
        return this.getUsersByRoomIdAndSubscriptionRole(roomId, 'moderator');
    }