public ResponseEntity activateChannel()

in src/main/java/com/epam/digital/data/platform/settings/api/controller/SettingsController.java [82:89]


  public ResponseEntity<Void> activateChannel(
      @PathVariable("channel") Channel channel,
      @RequestBody @Valid ActivateChannelInputDto input,
      @Parameter(hidden = true) @RequestHeader("X-Access-Token") String accessToken) {
    log.info("Activate diia channel is called");
    activationService.activateChannel(input, channel, accessToken);
    return ResponseEntity.status(HttpStatus.OK).build();
  }