You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
574 B
24 lines
574 B
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;
|