uptime-kuma/server/model/docker_host.js

20 lines
443 B
JavaScript
Raw Normal View History

const { BeanModel } = require("redbean-node/dist/bean-model");
class DockerHost extends BeanModel {
/**
* Returns an object that ready to parse to JSON
* @returns {Object}
*/
toJSON() {
return {
id: this._id,
userId: this._user_id,
daemon: this._dockerDaemon,
type: this._dockerType,
name: this._name,
2022-07-22 15:57:40 +00:00
};
}
}
2022-07-22 15:57:40 +00:00
module.exports = DockerHost;