UNPKG

stackpress

Version:

Incept is a content management framework.

14 lines (13 loc) 454 B
import { action } from '@stackpress/ingest/Server'; import drop from '../../scripts/drop.js'; export default action(async function DropScript(_req, res, ctx) { const cli = ctx.plugin('cli'); const database = ctx.plugin('database'); if (!database) { cli?.verbose && cli.control.error('No database found'); res.setError('No database found'); return; } await drop(ctx, database, cli); res.setStatus(200); });