gui: masks for: adding recovery and removals
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
758a827c2d
commit
63fd8e58b2
|
@ -161,6 +161,7 @@ Ext.define('PBS.config.TfaView', {
|
|||
}
|
||||
|
||||
try {
|
||||
me.getView().mask(gettext('Please wait...'), 'x-mask-loading');
|
||||
await PBS.Async.api2({
|
||||
url: `/api2/extjs/access/tfa/${record.id}`,
|
||||
method: 'DELETE',
|
||||
|
@ -169,7 +170,9 @@ Ext.define('PBS.config.TfaView', {
|
|||
me.reload();
|
||||
} catch (error) {
|
||||
Ext.Msg.alert(gettext('Error'), error);
|
||||
}
|
||||
} finally {
|
||||
me.getView().unmask();
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
@ -74,6 +74,8 @@ Ext.define('PBS.window.AddTfaRecovery', {
|
|||
let me = this;
|
||||
let view = me.getView();
|
||||
|
||||
view.mask(gettext('Please wait...'), 'x-mask-loading');
|
||||
|
||||
let baseurl = view.baseurl;
|
||||
|
||||
let userid = me.userid;
|
||||
|
@ -87,8 +89,6 @@ Ext.define('PBS.window.AddTfaRecovery', {
|
|||
params.password = me.lookup('password').getValue();
|
||||
}
|
||||
|
||||
me.getView().close();
|
||||
|
||||
try {
|
||||
let response = await PBS.Async.api2({
|
||||
url: `${baseurl}/${userid}`,
|
||||
|
@ -102,6 +102,8 @@ Ext.define('PBS.window.AddTfaRecovery', {
|
|||
});
|
||||
} catch (ex) {
|
||||
Ext.Msg.alert(gettext('Error'), ex);
|
||||
} finally {
|
||||
view.close();
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue