Skip to content

Commit

Permalink
fix: PR remarks
Browse files Browse the repository at this point in the history
Signed-off-by: LE SAULNIER Kevin <[email protected]>
  • Loading branch information
LE SAULNIER Kevin committed Sep 13, 2024
1 parent 2d8dc9c commit baa43ef
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ public ResponseEntity<Void> stashNetworkModifications(

@PutMapping(value = "/network-modifications", produces = MediaType.APPLICATION_JSON_VALUE, params = "active")
@Operation(summary = "enable or disable network modifications")
@ApiResponse(responseCode = "200", description = "The network modifications were updated successfully")
public ResponseEntity<Void> updateNetworkModificationsActivation(
@ApiResponse(responseCode = "200", description = "The activation status related to the network modification was successfully updated")
public ResponseEntity<Void> updateNetworkModificationsActivationStatus(
@Parameter(description = "Network modification UUIDs") @RequestParam("uuids") List<UUID> networkModificationUuids,
@Parameter(description = "enable or disable network modifications") @RequestParam(name = "active") Boolean active) {
networkModificationService.updateNetworkModificationActivation(networkModificationUuids, active);
Expand Down

0 comments on commit baa43ef

Please sign in to comment.