mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-17 03:51:21 +02:00
* Admin: Context menu action to clear user credentials
This commit is contained in:
@ -1382,6 +1382,23 @@ class AdminApp extends EgwApp
|
||||
}, this));
|
||||
}
|
||||
|
||||
/**
|
||||
* Action handler for clear credentials action
|
||||
*
|
||||
* @param action
|
||||
* @param selected
|
||||
*/
|
||||
clear_credentials_handler(action : egwAction, selected: egwActionObject[])
|
||||
{
|
||||
let ids = [];
|
||||
debugger;
|
||||
for(let row of selected)
|
||||
{
|
||||
ids.push(row.id.split("::").pop());
|
||||
}
|
||||
this.egw.request("admin.admin_passwordreset.ajax_clear_credentials", [ids]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Export content of given field into relevant file
|
||||
*/
|
||||
|
Reference in New Issue
Block a user