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