You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by le...@apache.org on 2021/10/14 06:20:18 UTC

[dolphinscheduler] branch 2.0-prepare updated: fix bug: 6523 Failed to authorize resource (#6524) (#6526)

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

leonbao pushed a commit to branch 2.0-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/2.0-prepare by this push:
     new 0659aa3  fix bug: 6523 Failed to authorize resource (#6524) (#6526)
0659aa3 is described below

commit 0659aa3f46a79be20caf67b13ca43cd329ff3ec3
Author: Jiajie Zhong <zh...@hotmail.com>
AuthorDate: Thu Oct 14 14:20:14 2021 +0800

    fix bug: 6523 Failed to authorize resource (#6524) (#6526)
    
    Co-authored-by: OS <29...@users.noreply.github.com>
---
 dolphinscheduler-ui/src/js/conf/home/store/security/actions.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js b/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js
index 6ce4457..b6b5a87 100644
--- a/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js
+++ b/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js
@@ -218,7 +218,7 @@ export default {
 
     // Authorized project
     const p1 = new Promise((resolve, reject) => {
-      io.get(`${o.category}/authorize-resource-tree`, param, res => {
+      io.get(`${o.category}/authed-resource-tree`, param, res => {
         resolve(res.data)
       }).catch(e => {
         reject(e)