mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 18:08:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			833 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			833 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const ACTIONS = {
 | |
|   read: 'plugin::upload.read',
 | |
|   readSettings: 'plugin::upload.settings.read',
 | |
|   create: 'plugin::upload.assets.create',
 | |
|   update: 'plugin::upload.assets.update',
 | |
|   download: 'plugin::upload.assets.download',
 | |
|   copyLink: 'plugin::upload.assets.copy-link',
 | |
|   configureView: 'plugin::upload.configure-view',
 | |
| };
 | |
| 
 | |
| const ALLOWED_SORT_STRINGS = [
 | |
|   'createdAt:DESC',
 | |
|   'createdAt:ASC',
 | |
|   'name:ASC',
 | |
|   'name:DESC',
 | |
|   'updatedAt:DESC',
 | |
|   'updatedAt:ASC',
 | |
| ];
 | |
| 
 | |
| const ALLOWED_WEBHOOK_EVENTS = {
 | |
|   MEDIA_CREATE: 'media.create',
 | |
|   MEDIA_UPDATE: 'media.update',
 | |
|   MEDIA_DELETE: 'media.delete',
 | |
| };
 | |
| 
 | |
| module.exports = {
 | |
|   ACTIONS,
 | |
|   FOLDER_MODEL_UID: 'plugin::upload.folder',
 | |
|   FILE_MODEL_UID: 'plugin::upload.file',
 | |
|   API_UPLOAD_FOLDER_BASE_NAME: 'API Uploads',
 | |
|   ALLOWED_SORT_STRINGS,
 | |
|   ALLOWED_WEBHOOK_EVENTS,
 | |
| };
 | 
