chatwoot/app/javascript/dashboard/store/modules/specs/inboxAssignableMembers/fixtures.js
Sivin Varghese 285f7bbeb5
Enhancement: Ability to assign administrators as conversation assignees (#2142)
* Enhancement: Ability to assign administrators as conversation assignee

Co-authored-by: Nithin David Thomas <[email protected]>
Co-authored-by: Muhsin Keloth <[email protected]>
2021-04-22 23:17:29 +05:30

29 lines
632 B
JavaScript

export default [
{
id: 1,
provider: 'email',
uid: '[email protected]',
name: 'Agent1',
email: '[email protected]',
account_id: 1,
created_at: '2019-11-18T02:21:06.225Z',
updated_at: '2019-12-20T07:43:35.794Z',
pubsub_token: 'random-1',
role: 'agent',
confirmed: true,
},
{
id: 2,
provider: 'email',
uid: '[email protected]',
name: 'Agent2',
email: '[email protected]',
account_id: 1,
created_at: '2019-11-18T02:21:06.225Z',
updated_at: '2019-12-20T07:43:35.794Z',
pubsub_token: 'random-2',
role: 'agent',
confirmed: true,
},
];