mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 15:24:05 +00:00
14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
|
const { BeanModel } = require("redbean-node/dist/bean-model");
|
||
|
|
||
|
class Tag extends BeanModel {
|
||
|
toJSON() {
|
||
|
return {
|
||
|
id: this._id,
|
||
|
name: this._name,
|
||
|
color: this._color,
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Tag;
|