From a12bf88b68f688ee35a2cd1bec084ea3041f6725 Mon Sep 17 00:00:00 2001 From: Konstantinos Feretos Date: Wed, 14 Feb 2024 18:38:50 +0200 Subject: [PATCH] fix(authorization): createResourceAccessList API breakage (#956) --- modules/authorization/src/authorization.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/authorization/src/authorization.proto b/modules/authorization/src/authorization.proto index c3c0b98de..073e2bfbe 100644 --- a/modules/authorization/src/authorization.proto +++ b/modules/authorization/src/authorization.proto @@ -78,8 +78,8 @@ message AllowedResourcesResponse { message ResourceAccessListRequest { string subject = 1; string action = 2; - string resourceType = 3; - optional string viewName = 4; + optional string viewName = 3; + string resourceType = 5; } message ResourceAccessListResponse {