UNPKG

@opengis/fastify-table

Version:

core-plugins

14 lines (13 loc) 359 B
import cronApi from "./controllers/cronApi.js"; const cronSchema = { type: "object", properties: { params: { name: { type: "string", pattern: "^([\\d\\w._-]+)$" }, }, }, }; function plugin(app, opt = {}) { app.get("/cron/:name", { config: { role: "admin" }, schema: cronSchema }, cronApi); } export default plugin;