Skip to content

Commit

Permalink
fix demo app spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
MJ1998 committed Oct 16, 2024
1 parent e339b52 commit cacc528
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ class DemoFhirSyncWorker(appContext: Context, workerParams: WorkerParameters) :
override fun getConflictResolver() = AcceptLocalConflictResolver

override fun getUploadStrategy(): UploadStrategy =
UploadStrategy.forBundleRequest(methodForCreate = HttpCreateMethod.PUT, methodForUpdate = HttpUpdateMethod.PATCH, squash = true, bundleSize = 500)
UploadStrategy.forBundleRequest(
methodForCreate = HttpCreateMethod.PUT,
methodForUpdate = HttpUpdateMethod.PATCH,
squash = true,
bundleSize = 500
)

override fun getFhirEngine() = FhirApplication.fhirEngine(applicationContext)
}

0 comments on commit cacc528

Please sign in to comment.