1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

Prevent deleting yourself from users list page

This commit is contained in:
Andrew Kingston 2022-08-02 14:35:32 +01:00
parent 4f91baf3ea
commit ad83d5ef26

View file

@ -28,6 +28,7 @@
import ImportUsersModal from "./_components/ImportUsersModal.svelte"
import { createPaginationStore } from "helpers/pagination"
import { Constants } from "@budibase/frontend-core"
import { get } from "svelte/store"
const accessTypes = [
{
@ -198,6 +199,10 @@
const deleteRows = async () => {
try {
let ids = selectedRows.map(user => user._id)
if (ids.includes(get(auth).user._id)) {
notifications.error("You cannot delete yourself")
return
}
await users.bulkDelete(ids)
notifications.success(`Successfully deleted ${selectedRows.length} rows`)
selectedRows = []