From 335633d20808168ef7c7276ff07c483a1447ce3b Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Mon, 12 Jul 2021 09:48:02 +0200 Subject: [PATCH] window/AuthEditBase: handle differenc config api urls necessary for pbs. also give an option to use the type as url path e.g. /config/access// Signed-off-by: Dominik Csapak --- 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.39.2