You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by zh...@apache.org on 2022/03/14 03:38:40 UTC

[rocketmq-dashboard] branch master updated: Configure the acl interface path in the authInterceptor (#77)

This is an automated email from the ASF dual-hosted git repository.

zhangjidi2016 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new f5b9bbb  Configure the acl interface path in the authInterceptor (#77)
f5b9bbb is described below

commit f5b9bbb9a78b7e3e8a2da2f51856ae7f39c694f6
Author: zhangjidi2016 <10...@qq.com>
AuthorDate: Mon Mar 14 11:36:36 2022 +0800

    Configure the acl interface path in the authInterceptor (#77)
    
    * Configure the acl interface path in the authInterceptor
    
    * retrigger ci
    
    Co-authored-by: zhangjidi <zh...@cmss.chinamobile.com>
---
 .../apache/rocketmq/dashboard/config/AuthWebMVCConfigurerAdapter.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/rocketmq/dashboard/config/AuthWebMVCConfigurerAdapter.java b/src/main/java/org/apache/rocketmq/dashboard/config/AuthWebMVCConfigurerAdapter.java
index 4c240fd..3a28d70 100644
--- a/src/main/java/org/apache/rocketmq/dashboard/config/AuthWebMVCConfigurerAdapter.java
+++ b/src/main/java/org/apache/rocketmq/dashboard/config/AuthWebMVCConfigurerAdapter.java
@@ -61,7 +61,8 @@ public class AuthWebMVCConfigurerAdapter extends WebMvcConfigurerAdapter {
                 "/ops/**",
                 "/producer/**",
                 "/test/**",
-                "/topic/**");
+                "/topic/**",
+                "/acl/**");
         }
     }