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>
18 lines
350 B
JavaScript
18 lines
350 B
JavaScript
const { BeanModel } = require("redbean-node/dist/bean-model");
|
|
|
|
class Tag extends BeanModel {
|
|
|
|
/**
|
|
* Return an object that ready to parse to JSON
|
|
* @returns {Object}
|
|
*/
|
|
toJSON() {
|
|
return {
|
|
id: this._id,
|
|
name: this._name,
|
|
color: this._color,
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Tag;
|