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