Shows a non-intrusive authentication notification with login option. Uses a bottom-right notification instead of blocking modal dialog. This ensures a better user experience that doesn't interrupt workflow.
Optional
Optional source description (e.g., "Datalayer Platform", "Runtime Selection")
Promise that resolves to true if user clicked Login, false otherwise
const shouldLogin = await showAuthenticationDialog("Datalayer Platform");if (shouldLogin) { await vscode.commands.executeCommand("datalayer.login");} Copy
const shouldLogin = await showAuthenticationDialog("Datalayer Platform");if (shouldLogin) { await vscode.commands.executeCommand("datalayer.login");}
Shows a non-intrusive authentication notification with login option. Uses a bottom-right notification instead of blocking modal dialog. This ensures a better user experience that doesn't interrupt workflow.