uptime-kuma/server/model/incident.js
2021-09-16 22:48:28 +08:00

18 lines
377 B
JavaScript

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;