mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			84 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| const restrictAccess = require('../middlewares/restrict-access');
 | |
| 
 | |
| module.exports = [
 | |
|   {
 | |
|     method: 'GET',
 | |
|     path: '/',
 | |
|     handler: 'documentation.index',
 | |
|     config: {
 | |
|       auth: false,
 | |
|       middlewares: [restrictAccess],
 | |
|     },
 | |
|   },
 | |
|   {
 | |
|     method: 'GET',
 | |
|     path: '/v:major(\\d+).:minor(\\d+).:patch(\\d+)',
 | |
|     handler: 'documentation.index',
 | |
|     config: {
 | |
|       auth: false,
 | |
|       middlewares: [restrictAccess],
 | |
|     },
 | |
|   },
 | |
|   {
 | |
|     method: 'GET',
 | |
|     path: '/login',
 | |
|     handler: 'documentation.loginView',
 | |
|     config: {
 | |
|       auth: false,
 | |
|     },
 | |
|   },
 | |
|   {
 | |
|     method: 'POST',
 | |
|     path: '/login',
 | |
|     handler: 'documentation.login',
 | |
|     config: {
 | |
|       auth: false,
 | |
|     },
 | |
|   },
 | |
|   {
 | |
|     method: 'GET',
 | |
|     path: '/getInfos',
 | |
|     handler: 'documentation.getInfos',
 | |
|     config: {
 | |
|       policies: [
 | |
|         { name: 'admin::hasPermissions', config: { actions: ['plugin::documentation.read'] } },
 | |
|       ],
 | |
|     },
 | |
|   },
 | |
|   {
 | |
|     method: 'POST',
 | |
|     path: '/regenerateDoc',
 | |
|     handler: 'documentation.regenerateDoc',
 | |
|     config: {
 | |
|       policies: [
 | |
|         {
 | |
|           name: 'admin::hasPermissions',
 | |
|           config: { actions: ['plugin::documentation.settings.regenerate'] },
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|   },
 | |
|   {
 | |
|     method: 'PUT',
 | |
|     path: '/updateSettings',
 | |
|     handler: 'documentation.updateSettings',
 | |
|     config: {
 | |
|       policies: [
 | |
|         {
 | |
|           name: 'admin::hasPermissions',
 | |
|           config: { actions: ['plugin::documentation.settings.update'] },
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|   },
 | |
|   {
 | |
|     method: 'DELETE',
 | |
|     path: '/deleteDoc/:version',
 | |
|     handler: 'documentation.deleteDoc',
 | |
|     config: {
 | |
|       policies: [],
 | |
|     },
 | |
|   },
 | |
| ];
 | 
