2ce7438c79
* Cleanup agent store and actions * Move set/create/update/destroy to helpers * Update mutation specs * Add specs for API helper * Fix edit/delete action visibility * Add actions specs * Remove unused API helpers * Remove duplicates * Remove duplicates * Fix duplicate
28 lines
632 B
JavaScript
28 lines
632 B
JavaScript
export default [
|
|
{
|
|
id: 1,
|
|
provider: 'email',
|
|
uid: 'agent1@chatwoot.com',
|
|
name: 'Agent1',
|
|
email: 'agent1@chatwoot.com',
|
|
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: 'agent2@chatwoot.com',
|
|
name: 'Agent2',
|
|
email: 'agent2@chatwoot.com',
|
|
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,
|
|
},
|
|
];
|