public async prompt()

in src/eventSubscription/createWizard/ContainerRegistryListStep.ts [17:24]


    public async prompt(wizardContext: T): Promise<T> {
        if (!wizardContext.registry) {
            const quickPickOptions: IAzureQuickPickOptions = { placeHolder: localize('listPlaceHolder', 'Select a registry'), id: `ContainerRegistryListStep/${wizardContext.subscriptionId}` };
            wizardContext.registry = (await ext.ui.showQuickPick(this.getQuickPicks(wizardContext), quickPickOptions)).data;
        }

        return wizardContext;
    }