uptime-kuma/server/model/incident.js

24 lines
574 B
JavaScript
Raw Normal View History

2021-09-16 14:48:28 +00:00
const { BeanModel } = require("redbean-node/dist/bean-model");
class Incident extends BeanModel {
/**
* Return an object that ready to parse to JSON for public
* Only show necessary data to public
* @returns {Object}
*/
2021-09-16 14:48:28 +00:00
toPublicJSON() {
return {
id: this.id,
style: this.style,
title: this.title,
content: this.content,
pin: this.pin,
createdDate: this.createdDate,
lastUpdatedDate: this.lastUpdatedDate,
2021-09-16 14:48:28 +00:00
};
}
}
module.exports = Incident;