[pbs-devel] [PATCH widget-toolkit 1/2] window/AuthEditBase: handle differenc config api urls
Dominik Csapak
d.csapak at proxmox.com
Mon Jul 12 09:48:02 CEST 2021
necessary for pbs. also give an option to use the type as url path
e.g. /config/access/<TYPE>/<ID>
Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
src/window/AuthEditBase.js | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/src/window/AuthEditBase.js b/src/window/AuthEditBase.js
index 4faea34..43a2fd6 100644
--- a/src/window/AuthEditBase.js
+++ b/src/window/AuthEditBase.js
@@ -7,16 +7,23 @@ Ext.define('Proxmox.window.AuthEditBase', {
labelWidth: 120,
},
+ baseurl: '/access/domains',
+ useTypeInUrl: false,
+
initComponent: function() {
var me = this;
me.isCreate = !me.realm;
+ me.url = `/api2/extjs${me.baseUrl}`;
+ if (me.useTypeInUrl) {
+ me.url += `/${me.authType}`;
+ }
+
if (me.isCreate) {
- me.url = '/api2/extjs/access/domains';
me.method = 'POST';
} else {
- me.url = '/api2/extjs/access/domains/' + me.realm;
+ me.url += `/${me.realm}`;
me.method = 'PUT';
}
@@ -76,7 +83,8 @@ Ext.define('Proxmox.window.AuthEditBase', {
success: function(response, options) {
var data = response.result.data || {};
// just to be sure (should not happen)
- if (data.type !== me.authType) {
+ // only check this when the type is not in the api path
+ if (!me.useTypeInUrl && data.type !== me.authType) {
me.close();
throw "got wrong auth type";
}
--
2.30.2
More information about the pbs-devel
mailing list