Skip to content

Commit 00f2406

Browse files
committed
update authorziation scope
1 parent 9587658 commit 00f2406

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<!-- check micrometer.version vertx-micrometer-metrics consumes before bumping up -->
1717
<micrometer.version>1.12.2</micrometer.version>
1818
<junit-jupiter.version>5.11.2</junit-jupiter.version>
19-
<uid2-shared.version>10.8.0</uid2-shared.version>
19+
<uid2-shared.version>10.8.7-alpha-279-SNAPSHOT</uid2-shared.version>
2020
<okta-jwt.version>0.5.10</okta-jwt.version>
2121
<image.version>${project.version}</image.version>
2222
</properties>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void setupRoutes(Router router) {
5757
synchronized (writeLock) {
5858
this.handleEnclaveAdd(ctx);
5959
}
60-
}, new AuditParams(List.of("name", "protocol", "enclave_id"), Collections.emptyList()), Role.PRIVILEGED));
60+
}, new AuditParams(List.of("name", "protocol", "enclave_id"), Collections.emptyList()), Role.PRIVILEGED, Role.ENCLAVE_REGISTRAR));
6161
router.post(API_ENCLAVE_DEL.toString()).blockingHandler(auth.handle((ctx) -> {
6262
synchronized (writeLock) {
6363
this.handleEnclaveDel(ctx);

0 commit comments

Comments
 (0)