Files
espocrm/application/Espo/Resources/metadata/entityDefs/EmailTemplateCategory.json
2026-01-19 17:46:06 +01:00

102 lines
2.6 KiB
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true
},
"order": {
"type": "int",
"minValue": 1,
"readOnly": true,
"textFilterDisabled": true
},
"description": {
"type": "text"
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"modifiedAt": {
"type": "datetime",
"readOnly": true
},
"createdBy": {
"type": "link",
"readOnly": true
},
"modifiedBy": {
"type": "link",
"readOnly": true
},
"teams": {
"type": "linkMultiple"
},
"parent": {
"type": "link",
"view": "views/fields/link-category-tree"
},
"childList": {
"type": "jsonArray",
"notStorable": true
}
},
"links": {
"createdBy": {
"type": "belongsTo",
"entity": "User"
},
"modifiedBy": {
"type": "belongsTo",
"entity": "User"
},
"teams": {
"type": "hasMany",
"entity": "Team",
"relationName": "entityTeam",
"layoutRelationshipsDisabled": true
},
"parent": {
"type": "belongsTo",
"foreign": "children",
"entity": "EmailTemplateCategory"
},
"children": {
"type": "hasMany",
"foreign": "parent",
"entity": "EmailTemplateCategory",
"readOnly": true
},
"emailTemplates": {
"type": "hasMany",
"foreign": "category",
"entity": "EmailTemplate"
}
},
"collection": {
"orderBy": "parent",
"order": "asc"
},
"additionalTables": {
"EmailTemplateCategoryPath": {
"attributes": {
"id": {
"type": "id",
"dbType": "integer",
"len": 11,
"autoincrement": true
},
"ascendorId": {
"type": "foreignId",
"index": true
},
"descendorId" : {
"type": "foreignId",
"index": true
}
}
}
},
"repositoryClassName": "Espo\\Core\\Repositories\\CategoryTree"
}