You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
441 B
19 lines
441 B
2 years ago
|
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;
|