Skip to content

Commit

Permalink
Gave format
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia committed Jan 17, 2024
1 parent 6edf0b4 commit 9a6d4e3
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,12 @@ public Mono<Void> submit(
Mono.error(new InvalidRequestObjectException("no request body was provided"))
)
.doOnNext(this::validate)
.flatMap(submissionDto -> clientService.submit(submissionDto, userId, userEmail, userName,businessId))
.flatMap(submissionDto -> clientService.submit(
submissionDto,
userId,
userEmail,
userName,
businessId))
.doOnNext(submissionId ->
serverResponse
.getHeaders()
Expand Down

0 comments on commit 9a6d4e3

Please sign in to comment.