mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			228 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			228 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| /**
 | |
|  * List every entries of a model.
 | |
|  */
 | |
| 
 | |
| module.exports = function * () {
 | |
|   try {
 | |
|     const entry = yield strapi.hooks.blueprints.find(this);
 | |
|     this.body = entry;
 | |
|   } catch (err) {
 | |
|     this.body = err;
 | |
|   }
 | |
| };
 | 
