We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94cd7c7 commit 2b3a5feCopy full SHA for 2b3a5fe
src/main/kotlin/org/gitanimals/identity/controller/request/RedirectWhenSuccess.kt
@@ -24,6 +24,10 @@ enum class RedirectWhenSuccess(
24
"https://api.gitanimals.org/logins/oauth/github/tokens/APP",
25
"gitanimals://auth?jwt={jwt}"
26
),
27
+ WEB_VIEW(
28
+ "https://api.gitanimals.org/logins/oauth/github/tokens/WEB_VIEW",
29
+ "https://git-animal-client-webview.vercel.app/auth?jwt={jwt}"
30
+ )
31
;
32
33
fun successUriWithToken(jwt: String): String = successUri.replace("{jwt}", jwt)
0 commit comments