File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
src/main/kotlin/org/gitanimals/identity/controller/request Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,16 @@ enum class RedirectWhenSuccess(
2222 ),
2323 APP (
2424 " https://api.gitanimals.org/logins/oauth/github/tokens/APP" ,
25- " gitanimals://auth?jwt={jwt}"
25+ " gitanimals://auth?jwt={jwt}" ,
2626 ),
2727 WEB_VIEW (
2828 " https://api.gitanimals.org/logins/oauth/github/tokens/WEB_VIEW" ,
29- " https://git-animal-client-webview.vercel.app/auth?jwt={jwt}"
30- )
29+ " https://git-animal-client-webview.vercel.app/auth?jwt={jwt}" ,
30+ ),
31+ DEV (
32+ " https://api.gitanimals.org/logins/oauth/github/tokens/DEV" ,
33+ " https://git-animal-client.vercel.app/auth/jwt={jwt}" ,
34+ ),
3135 ;
3236
3337 fun successUriWithToken (jwt : String ): String = successUri.replace(" {jwt}" , jwt)
You can’t perform that action at this time.
0 commit comments