UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

9 lines (8 loc) 276 B
import { UnprocessableContentError } from '@directus/errors'; export function validateRemainingAdminCount(count) { if (count <= 0) { throw new UnprocessableContentError({ reason: `Cannot remove the last admin user from the system`, }); } }