Skip to content
Snippets Groups Projects

Fix error with a missing permission on foundation DB call

Merged Martin Lowe requested to merge malowe/main/7 into main
4 files
+ 14
6
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -63,7 +63,7 @@ public interface FoundationAPI {
@GET
@Path("people/projects/full")
@RolesAllowed({ FoundationDBAuthRoles.READ_PEOPLE, FoundationDBAuthRoles.READ_PROJECT })
@RolesAllowed({ FoundationDBAuthRoles.READ_PEOPLE, FoundationDBAuthRoles.READ_PROJECT, FoundationDBAuthRoles.READ_SYSTEM })
Response getPeopleProjectsByRelations(@BeanParam BaseAPIParameters params,
@QueryParam(FoundationDBExtensionParameterNames.RELATIONS_RAW) List<String> relations,
@QueryParam(FoundationDBExtensionParameterNames.PEOPLE_IDS_RAW) List<String> peopleIds,
Loading