NoIssue: Add the resourceTypes query parameter to the admin clients getAdminEvents method.

This commit is contained in:
jhollmann 2021-10-26 15:14:52 +02:00 committed by Stian Thorgersen
parent 13a7f773a9
commit bfe6f34e1d

View file

@ -142,7 +142,7 @@ public interface RealmResource {
@Produces(MediaType.APPLICATION_JSON)
List<AdminEventRepresentation> getAdminEvents(@QueryParam("operationTypes") List<String> operationTypes, @QueryParam("authRealm") String authRealm, @QueryParam("authClient") String authClient,
@QueryParam("authUser") String authUser, @QueryParam("authIpAddress") String authIpAddress,
@QueryParam("resourcePath") String resourcePath, @QueryParam("dateFrom") String dateFrom,
@QueryParam("resourcePath") String resourcePath, @QueryParam("resourceTypes") List<String> resourceTypes, @QueryParam("dateFrom") String dateFrom,
@QueryParam("dateTo") String dateTo, @QueryParam("first") Integer firstResult,
@QueryParam("max") Integer maxResults);