mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
20 lines
443 B
JavaScript
20 lines
443 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,
|
|
daemon: this._dockerDaemon,
|
|
type: this._dockerType,
|
|
name: this._name,
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = DockerHost;
|