Skip to content

Commit

Permalink
- updated api docs
Browse files Browse the repository at this point in the history
  • Loading branch information
temi committed Nov 28, 2023
1 parent 5a99814 commit 136a451
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ class ApiController extends BaseController {

@Path("/api/opus/{opusId}/profile/{profileId}/image/{fileName}")
@Operation(
summary = "Get image associated with a profile",
summary = "Get private image associated with a profile",
operationId = "/api/opus/{opusId}/profile/{profileId}/image/{fileName}",
method = "GET",
responses = [
Expand Down Expand Up @@ -582,11 +582,11 @@ class ApiController extends BaseController {
@Parameter(name = "opusId",
in = ParameterIn.PATH,
required = true,
description = "Collection id - UUID or short name"),
description = "Collection id - ONLY UUID accepted"),
@Parameter(name = "profileId",
in = ParameterIn.PATH,
required = true,
description = "Profile id - UUID or Scientific name"),
description = "Profile id - ONLY UUID accepted"),
@Parameter(name = "fileName",
in = ParameterIn.PATH,
required = true,
Expand Down Expand Up @@ -626,7 +626,7 @@ class ApiController extends BaseController {

@Path("/api/opus/{opusId}/profile/{profileId}/image/thumbnail/{fileName}")
@Operation(
summary = "Get thumbnail image associated with a profile",
summary = "Get thumbnail of private image associated with a profile",
operationId = "/api/opus/{opusId}/profile/{profileId}/image/thumbnail/{fileName}",
method = "GET",
responses = [
Expand Down Expand Up @@ -657,11 +657,11 @@ class ApiController extends BaseController {
@Parameter(name = "opusId",
in = ParameterIn.PATH,
required = true,
description = "Collection id - UUID or short name"),
description = "Collection id - ONLY UUID accepted"),
@Parameter(name = "profileId",
in = ParameterIn.PATH,
required = true,
description = "Profile id - UUID or Scientific name"),
description = "Profile id - ONLY UUID accepted"),
@Parameter(name = "fileName",
in = ParameterIn.PATH,
required = true,
Expand Down

0 comments on commit 136a451

Please sign in to comment.