 142b83cc13
			
		
	
	142b83cc13
	
	
	
		
			
			New features: - Automatic error reporting (enabled by default) - Increase build times by leveraging docker build caches - Fixes: - Fix error handling - Fix vue autodetect - Custom dockerfile is not the default Others: - Cleanup `logs-servers` collection, because old errors are not standardized - New Traefik proxy version - Standardized directory configurations
		
			
				
	
	
		
			15 lines
		
	
	
		
			471 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			471 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const mongoose = require('mongoose')
 | |
| const { version } = require('../../../package.json')
 | |
| const logSchema = mongoose.Schema(
 | |
|   {
 | |
|     version: { type: String, default: version },
 | |
|     type: { type: String, required: true },
 | |
|     message: { type: String, required: true },
 | |
|     stack: { type: String },
 | |
|     seen: { type: Boolean, default: false }
 | |
|   },
 | |
|   { timestamps: { createdAt: 'createdAt', updatedAt: false } }
 | |
| )
 | |
| 
 | |
| module.exports = mongoose.model('logs-server', logSchema)
 |