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