mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 11:54:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			669 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			669 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
const { getService } = require('../utils');
 | 
						|
const { ACTIONS } = require('../constants');
 | 
						|
const validateConfig = require('./validation/admin/configureView');
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  async updateViewConfiguration(ctx) {
 | 
						|
    const {
 | 
						|
      request: { body },
 | 
						|
      state: { userAbility },
 | 
						|
    } = ctx;
 | 
						|
 | 
						|
    if (userAbility.cannot(ACTIONS.configureView)) {
 | 
						|
      return ctx.forbidden();
 | 
						|
    }
 | 
						|
 | 
						|
    const data = await validateConfig(body);
 | 
						|
    await getService('upload').setConfiguration(data);
 | 
						|
 | 
						|
    ctx.body = { data };
 | 
						|
  },
 | 
						|
 | 
						|
  async findViewConfiguration(ctx) {
 | 
						|
    const data = await getService('upload').getConfiguration();
 | 
						|
 | 
						|
    ctx.body = { data };
 | 
						|
  },
 | 
						|
};
 |