Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/#777 #783

Merged
merged 8 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package au.org.ala.profile.api

import au.ala.org.ws.security.RequireApiKey
import au.org.ala.profile.domain.CollectionList
import au.org.ala.profile.hub.BaseController
import au.org.ala.profile.hub.MapService
import au.org.ala.profile.hub.ProfileService
Expand Down Expand Up @@ -122,7 +121,7 @@ class ApiController extends BaseController {
mediaType = "application/json",
array = @ArraySchema(
schema = @Schema(
implementation = OpusResponse.class
implementation = CollectionList.class
)
)
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package au.org.ala.profile.domain
package au.org.ala.profile.api

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The location is not correct. Should not place this file with controllers. See comment before to get exact location.

import groovy.transform.ToString

Expand Down
Loading