qualiteer/lib/database/seeds/alerting-seed.js

12 lines
207 B
JavaScript
Raw Normal View History

2022-10-08 17:47:46 +00:00
export const table = "alerting";
export const seed = () => {
return [
{
name: `failing`,
class: `failing.js`,
method: "FAKEMETHOD",
expires: new Date().toJSON(),
},
];
};