mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			173 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			173 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
module.exports = ({ params = {}, query = {}, body = {} }, overrides = {}) => ({
 | 
						|
  params,
 | 
						|
  query,
 | 
						|
  request: {
 | 
						|
    query,
 | 
						|
    body,
 | 
						|
  },
 | 
						|
  ...overrides,
 | 
						|
});
 |