UNPKG

stackpress

Version:

Incept is a content management framework.

14 lines (13 loc) 458 B
import { action } from '@stackpress/ingest/Server'; import purge from '../../scripts/purge.js'; export default action(async function PurgeScript(_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 purge(ctx, database, cli); res.setStatus(200); });