Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
language: "en-US"
early_access: false
reviews:
profile: "chill"
request_changes_workflow: false
high_level_summary: true
poem: true
review_status: true
review_details: false
auto_review:
enabled: true
drafts: false
chat:
auto_reply: true
Comment thread
vibhorgoswami marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import org.forgerock.android.auth.Action
import org.forgerock.android.auth.FRRequestInterceptor
import org.forgerock.android.auth.Request
import org.forgerock.android.auth.RequestInterceptorRegistry
import androidx.core.net.toUri

@Composable
fun AppNavHost(navController: NavHostController,
Expand Down Expand Up @@ -110,7 +111,8 @@ fun AppNavHost(navController: NavHostController,
override fun intercept(request: Request, tag: Action?): Request {
return if (tag?.payload?.getString("tree").equals(USER_PROFILE_JOURNEY)) {
request.newBuilder()
.url(Uri.parse(request.url().toString())
.url(
request.url().toString().toUri()
.buildUpon()
.appendQueryParameter("ForceAuth", "true").toString())
.build()
Expand Down