mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
26 lines
284 B
JavaScript
26 lines
284 B
JavaScript
export const ATTRIBUTE_MODELS = [
|
|
{
|
|
id: 0,
|
|
option: 'Conversation',
|
|
},
|
|
];
|
|
|
|
export const ATTRIBUTE_TYPES = [
|
|
{
|
|
id: 0,
|
|
option: 'Text',
|
|
},
|
|
{
|
|
id: 1,
|
|
option: 'Number',
|
|
},
|
|
{
|
|
id: 4,
|
|
option: 'Link',
|
|
},
|
|
{
|
|
id: 5,
|
|
option: 'Date',
|
|
},
|
|
];
|