mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
	
	
		
			31 lines
		
	
	
		
			475 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			31 lines
		
	
	
		
			475 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | 'use strict'; | ||
|  | 
 | ||
|  | module.exports = { | ||
|  |   routes: [ | ||
|  |     { | ||
|  |       method: 'GET', | ||
|  |       path: '/homepage', | ||
|  |       handler: 'homepage.find', | ||
|  |       config: { | ||
|  |         policies: [], | ||
|  |       }, | ||
|  |     }, | ||
|  |     { | ||
|  |       method: 'PUT', | ||
|  |       path: '/homepage', | ||
|  |       handler: 'homepage.update', | ||
|  |       config: { | ||
|  |         policies: [], | ||
|  |       }, | ||
|  |     }, | ||
|  |     { | ||
|  |       method: 'DELETE', | ||
|  |       path: '/homepage', | ||
|  |       handler: 'homepage.delete', | ||
|  |       config: { | ||
|  |         policies: [], | ||
|  |       }, | ||
|  |     }, | ||
|  |   ], | ||
|  | }; |