From cdb0e42979c527142f413dcabc43b5fc67d2b8a5 Mon Sep 17 00:00:00 2001 From: Alexander Petric Date: Fri, 11 Apr 2025 16:35:27 -0400 Subject: [PATCH] github app linking: do the redirect via browser (#5611) --- frontend/src/routes/gh_success/+page.svelte | 105 ++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 frontend/src/routes/gh_success/+page.svelte diff --git a/frontend/src/routes/gh_success/+page.svelte b/frontend/src/routes/gh_success/+page.svelte new file mode 100644 index 0000000000..01234945d5 --- /dev/null +++ b/frontend/src/routes/gh_success/+page.svelte @@ -0,0 +1,105 @@ + + +
+
+ {#if isLoading} +
+
+

Processing GitHub app installation...

+
+ {:else if isSuccess} +
+

+ + Windmill GitHub app installation completed successfully +

+

+ The GitHub app has been successfully installed. You can now close this window and return to Windmill to start using the GitHub integration. +

+ +
+ {:else} +
+

+ + Failed to install Windmill GitHub app +

+

There was an error during the installation process:

+
+ {errorMessage} +
+

+ Please try again or contact your administrator for assistance. +

+ +
+ {/if} +
+