mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 21:56:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			452 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 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;
 |