Add users via WP; delete with confirmation
Add new user – On the Users page, the Add New (or "Add") button in the header typically navigates to the WordPress "Add New User" screen (e.g. #/wp/user-new.php in WP mode). There you enter username, email, password, and role. After creating the user, you can return to the FleekDash Users list (#/users) to see them and edit or change roles in the drawer or from the grid.
Delete user – Row action Delete on a user opens a confirmation drawer. The message explains that the user will be removed permanently. Confirm to delete; the request is sent (e.g. DELETE /fleekdash/v1/users/:id). On success, the user is removed from the list. You cannot delete your own account (the API returns an error if attempted).
Benefit: Add users via the familiar WP screen when needed; delete with a clear confirmation and without code.