How can I update the screen "Logged in. You may continue in your app" when user success log in to another thing? #939
-
I'd like to know how I can replace this screen that opens in the browser when the user is authenticated on the desktop with another thing? Is it possible? ![]() |
Beta Was this translation helpful? Give feedback.
Answered by
jan-tennert
May 18, 2025
Replies: 1 comment 2 replies
-
Yea just provide the raw HTML of the desired page in the config: install(Auth) {
httpCallbackConfig {
redirectHtml = """
...
""".trimIndent()
}
} This option is only available in the Desktop targets |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
PierreVieira
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yea just provide the raw HTML of the desired page in the config:
This option is only available in the Desktop targets