Skip to content

Commit ca140b3

Browse files
committed
update audit logs params for ServiceService.java APIs
1 parent bb24ea1 commit ca140b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/uid2/admin/vertx/service/ServiceService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ public void setupRoutes(Router router) {
5858
synchronized (writeLock) {
5959
this.handleServiceAdd(ctx);
6060
}
61-
}, new AuditParams(Collections.emptyList(), List.of("site_id", "name", "roles")), Role.PRIVILEGED));
61+
}, new AuditParams(Collections.emptyList(), List.of("site_id", "name", "roles", "link_id_regex")), Role.PRIVILEGED));
6262
router.post(API_SERVICE_UPDATE.toString()).blockingHandler(auth.handle((ctx) -> {
6363
synchronized (writeLock) {
6464
this.handleUpdate(ctx);
6565
}
66-
}, new AuditParams(Collections.emptyList(), List.of("service_id", "site_id", "name", "roles")), Role.PRIVILEGED));
66+
}, new AuditParams(Collections.emptyList(), List.of("service_id", "site_id", "name", "roles", "link_id_regex")), Role.PRIVILEGED));
6767
router.post(API_SERVICE_DELETE.toString()).blockingHandler(auth.handle((ctx) -> {
6868
synchronized (writeLock) {
6969
this.handleDelete(ctx);

0 commit comments

Comments
 (0)