A little minor change, by moving the CodiMD version header in its own middleware. Should simplify to determine the version number of the Backend in future. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			171 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			171 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict'
 | 
						|
 | 
						|
const config = require('../../config')
 | 
						|
 | 
						|
module.exports = function (req, res, next) {
 | 
						|
  res.set({
 | 
						|
    'CodiMD-Version': config.version
 | 
						|
  })
 | 
						|
  return next()
 | 
						|
}
 |