File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed
virtusize-core/src/main/java/com/virtusize/android/network Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,21 @@ sealed interface VirtusizeEndpoint {
1919 }
2020
2121 data class VirtusizeWebView (val version : String , val branch : String? ) : VirtusizeEndpoint {
22- override val path: String = when {
23- branch == null -> " /a/aoyama/$version /sdk-webview.html"
24- branch == " staging" -> " /a/aoyama/staging/sdk-webview.html"
25- else -> " /a/aoyama/testing/$branch /sdk-webview.html"
26- }
22+ override val path: String =
23+ when {
24+ branch == null -> " /a/aoyama/$version /sdk-webview.html"
25+ branch == " staging" -> " /a/aoyama/staging/sdk-webview.html"
26+ else -> " /a/aoyama/testing/$branch /sdk-webview.html"
27+ }
2728 }
2829
2930 data class VirtusizeWebViewForSpecificClients (val branch : String? ) : VirtusizeEndpoint {
30- override val path: String = when {
31- branch == null -> " /a/aoyama/testing/privacy-policy-phase2-vue/sdk-webview.html"
32- branch == " staging" -> " /a/aoyama/staging/sdk-webview.html"
33- else -> " /a/aoyama/testing/$branch /sdk-webview.html"
34- }
31+ override val path: String =
32+ when {
33+ branch == null -> " /a/aoyama/testing/privacy-policy-phase2-vue/sdk-webview.html"
34+ branch == " staging" -> " /a/aoyama/staging/sdk-webview.html"
35+ else -> " /a/aoyama/testing/$branch /sdk-webview.html"
36+ }
3537 }
3638
3739 data object ProductMetaDataHints : VirtusizeEndpoint {
You can’t perform that action at this time.
0 commit comments