mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-31 19:50:40 +00:00
46da5e51be
Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com>
23 lines
574 B
JavaScript
23 lines
574 B
JavaScript
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}
|
|
*/
|
|
toPublicJSON() {
|
|
return {
|
|
id: this.id,
|
|
style: this.style,
|
|
title: this.title,
|
|
content: this.content,
|
|
pin: this.pin,
|
|
createdDate: this.createdDate,
|
|
lastUpdatedDate: this.lastUpdatedDate,
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Incident;
|