-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Identity] Remove all parameters for Scan and Upload destinations (#7555
- Loading branch information
1 parent
32e3ff7
commit 2ccb804
Showing
27 changed files
with
813 additions
and
1,371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
identity/src/main/java/com/stripe/android/identity/navigation/DocumentUploadDestination.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.stripe.android.identity.navigation | ||
|
||
internal object DocumentUploadDestination : IdentityTopLevelDestination( | ||
popUpToParam = PopUpToParam( | ||
route = DocSelectionDestination.ROUTE.route, | ||
inclusive = false | ||
) | ||
) { | ||
val ROUTE = object : DestinationRoute() { | ||
override val routeBase = UPLOAD | ||
} | ||
|
||
override val destinationRoute = ROUTE | ||
} |
Oops, something went wrong.