From 8891fb4fd9aa3d20c0fb5973dd7cc4eedb479c99 Mon Sep 17 00:00:00 2001 From: songgaoshuai <1742057357@qq.com> Date: Wed, 7 Jun 2023 13:52:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=A8=A1=E5=9E=8Btoken?= =?UTF-8?q?=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../flowable-modeler/scripts/configuration/url-config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/static/flowable-modeler/scripts/configuration/url-config.js b/public/static/flowable-modeler/scripts/configuration/url-config.js index c06a11d..76bb74f 100644 --- a/public/static/flowable-modeler/scripts/configuration/url-config.js +++ b/public/static/flowable-modeler/scripts/configuration/url-config.js @@ -251,15 +251,15 @@ FLOWABLE.APP_URL = { /* OTHER URLS */ getEditorUsersUrl: function () { - return FLOWABLE.CONFIG.contextModelerRestRoot + '/rest/editor-users'; + return FLOWABLE.CONFIG.contextModelerRestRoot + '/rest/editor-users?Authorization=Bearer '+window.parent.this.token; }, getEditorGroupsUrl: function () { - return FLOWABLE.CONFIG.contextModelerRestRoot + '/rest/editor-groups'; + return FLOWABLE.CONFIG.contextModelerRestRoot + '/rest/editor-groups?Authorization=Bearer '+window.parent.this.token; }, getAboutInfoUrl: function () { - return FLOWABLE.CONFIG.contextModelerRestRoot + '/rest/about-info'; + return FLOWABLE.CONFIG.contextModelerRestRoot + '/rest/about-info?Authorization=Bearer '+window.parent.this.token; } };