From 18826cef58ec267118560d6456efc77f168d6bd6 Mon Sep 17 00:00:00 2001 From: greysonfang Date: Tue, 18 Jul 2023 11:57:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E7=8E=B0openapi=20RBAC=E6=9D=83?= =?UTF-8?q?=E9=99=90=E7=89=88=E6=9C=AC=20=E9=A1=B9=E7=9B=AE=E4=B8=8B?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E7=BB=84=E6=B7=BB=E5=8A=A0=E6=88=90=E5=91=98?= =?UTF-8?q?=20#9093?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/tencent/devops/auth/config/RbacAuthConfiguration.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/backend/ci/core/auth/biz-auth-rbac/src/main/kotlin/com/tencent/devops/auth/config/RbacAuthConfiguration.kt b/src/backend/ci/core/auth/biz-auth-rbac/src/main/kotlin/com/tencent/devops/auth/config/RbacAuthConfiguration.kt index 17fe0183d09..8917de25c5f 100644 --- a/src/backend/ci/core/auth/biz-auth-rbac/src/main/kotlin/com/tencent/devops/auth/config/RbacAuthConfiguration.kt +++ b/src/backend/ci/core/auth/biz-auth-rbac/src/main/kotlin/com/tencent/devops/auth/config/RbacAuthConfiguration.kt @@ -216,6 +216,7 @@ class RbacAuthConfiguration { authResourceGroupDao: AuthResourceGroupDao, dslContext: DSLContext, rbacCacheService: RbacCacheService, + deptService: DeptService, permissionGradeManagerService: PermissionGradeManagerService ) = RbacPermissionProjectService( authHelper = authHelper, @@ -225,6 +226,7 @@ class RbacAuthConfiguration { authResourceGroupDao = authResourceGroupDao, dslContext = dslContext, rbacCacheService = rbacCacheService, + deptService = deptService, permissionGradeManagerService = permissionGradeManagerService )