mirror of
https://github.com/strapi/strapi.git
synced 2025-07-20 07:27:06 +00:00
92 lines
1.5 KiB
JavaScript
92 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Lifecycle callbacks for the `File` model.
|
|
*/
|
|
|
|
module.exports = {
|
|
collectionName: 'files',
|
|
info: {
|
|
name: 'file',
|
|
description: '',
|
|
},
|
|
options: {},
|
|
pluginOptions: {
|
|
'content-manager': {
|
|
visible: false,
|
|
},
|
|
'content-type-builder': {
|
|
visible: false,
|
|
},
|
|
},
|
|
attributes: {
|
|
name: {
|
|
type: 'string',
|
|
configurable: false,
|
|
required: true,
|
|
},
|
|
alternativeText: {
|
|
type: 'string',
|
|
configurable: false,
|
|
},
|
|
caption: {
|
|
type: 'string',
|
|
configurable: false,
|
|
},
|
|
width: {
|
|
type: 'integer',
|
|
configurable: false,
|
|
},
|
|
height: {
|
|
type: 'integer',
|
|
configurable: false,
|
|
},
|
|
formats: {
|
|
type: 'json',
|
|
configurable: false,
|
|
},
|
|
hash: {
|
|
type: 'string',
|
|
configurable: false,
|
|
required: true,
|
|
},
|
|
ext: {
|
|
type: 'string',
|
|
configurable: false,
|
|
},
|
|
mime: {
|
|
type: 'string',
|
|
configurable: false,
|
|
required: true,
|
|
},
|
|
size: {
|
|
type: 'decimal',
|
|
configurable: false,
|
|
required: true,
|
|
},
|
|
url: {
|
|
type: 'string',
|
|
configurable: false,
|
|
required: true,
|
|
},
|
|
previewUrl: {
|
|
type: 'string',
|
|
configurable: false,
|
|
},
|
|
provider: {
|
|
type: 'string',
|
|
configurable: false,
|
|
required: true,
|
|
},
|
|
provider_metadata: {
|
|
type: 'json',
|
|
configurable: false,
|
|
},
|
|
related: {
|
|
type: 'relation',
|
|
relation: 'morphToMany',
|
|
configurable: false,
|
|
},
|
|
},
|
|
};
|