0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-29 05:53:09 +01:00
uptime-kuma/server/model/incident.js

18 lines
377 B
JavaScript
Raw Normal View History

2021-09-16 16:48:28 +02:00
const { BeanModel } = require("redbean-node/dist/bean-model");
class Incident extends BeanModel {
toPublicJSON() {
return {
id: this.id,
style: this.style,
title: this.title,
content: this.content,
pin: this.pin,
createdDate: this.createdDate,
};
}
}
module.exports = Incident;