mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-31 19:50:40 +00:00
19 lines
452 B
JavaScript
19 lines
452 B
JavaScript
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,
|
|
dockerDaemon: this.docker_daemon,
|
|
dockerType: this.docker_type,
|
|
name: this.name,
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = DockerHost;
|