mirror of
https://github.com/louislam/uptime-kuma.git
synced 2026-03-03 02:27:01 +00:00
18 lines
371 B
JavaScript
18 lines
371 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} Object ready to parse
|
|
*/
|
|
toJSON() {
|
|
return {
|
|
id: this._id,
|
|
name: this._name,
|
|
color: this._color,
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Tag;
|