Skip to content

Commit

Permalink
ISSD-468 add ticketattachment object
Browse files Browse the repository at this point in the history
  • Loading branch information
amosfong authored and brianchandotcom committed Oct 24, 2023
1 parent c2c2284 commit e1c1485
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
"label": {
"en-US": "Ticket Attachment"
},
"name": "TicketAttachment",
"objectFields": [
{
"DBType": "String",
"indexed": true,
"indexedAsKeyword": false,
"label": {
"en-US": "Account Key"
},
"name": "accountKey",
"required": true
},
{
"DBType": "String",
"indexed": true,
"indexedAsKeyword": false,
"label": {
"en-US": "Zendesk Ticket"
},
"name": "zendeskTicketId",
"required": true
},
{
"DBType": "String",
"indexed": true,
"indexedAsKeyword": false,
"label": {
"en-US": "Storage Provider"
},
"name": "storageProvider",
"required": true
},
{
"DBType": "String",
"indexed": true,
"indexedAsKeyword": false,
"label": {
"en-US": "Storage Bucket"
},
"name": "storageBucket",
"required": true
},
{
"DBType": "String",
"indexed": true,
"indexedAsKeyword": false,
"label": {
"en-US": "File Name"
},
"name": "fileName",
"required": true
},
{
"DBType": "String",
"indexed": true,
"indexedAsKeyword": false,
"label": {
"en-US": "File Size"
},
"name": "fileSize",
"required": true
},
{
"DBType": "String",
"indexed": true,
"indexedAsKeyword": false,
"label": {
"en-US": "Type"
},
"name": "type",
"required": true
}
],
"panelCategoryKey": "control_panel.object",
"pluralLabel": {
"en_US": "Ticket Attachments"
},
"scope": "company",
"system": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"deletionType": "cascade",
"label": {
"en_US": "Ticket Attachment"
},
"name": "accountEntryToTicketAttachment",
"objectDefinitionId1": "[$OBJECT_DEFINITION_ID:AccountEntry$]",
"objectDefinitionId2": "[$OBJECT_DEFINITION_ID:TicketAttachment$]",
"objectDefinitionName2": "TicketAttachment",
"type": "oneToMany"
}

0 comments on commit e1c1485

Please sign in to comment.