Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- re-enable swagger ui
- refactored definition
  • Loading branch information
temi committed Sep 13, 2024
1 parent 02ac134 commit 68d770f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ApiKeyInterceptor {

public ApiKeyInterceptor() {
// These controllers use JWT authorization instead
matchAll().excludes(controller: 'graphql').excludes(controller: 'paratoo').excludes(controller: 'harvest').excludes(controller:'graphqlWs')
matchAll().excludes(controller: 'graphql').excludes(controller: 'paratoo').excludes(controller: 'harvest').excludes(controller:'graphqlWs').excludes(controller:'openapi')
}

boolean before() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class ParatooController {
summary = "Gets the list of all org minted uuids submitted by an authenticated user.",
description = "Gets the list of all org minted uuids submitted by an authenticated user.",
responses = [
@ApiResponse(responseCode = "200", description = "Returns the list of all org minted uuids submitted by the user.", content = @Content(mediaType = "application/json", array = @ArraySchema(schema = @Schema(implementation = Map.class)))),
@ApiResponse(responseCode = "200", description = "Returns the list of all org minted uuids submitted by the user.", content = @Content(mediaType = "application/json", schema = @Schema(implementation = Map.class))),
@ApiResponse(responseCode = "403", description = "Forbidden"),
@ApiResponse(responseCode = "404", description = "Not found")
],
Expand Down

0 comments on commit 68d770f

Please sign in to comment.