mirror of
https://github.com/lingble/chatwoot.git
synced 2026-03-20 03:52:43 +00:00
Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Sojan <sojan@pepalo.com>
17 lines
245 B
JavaScript
17 lines
245 B
JavaScript
export default {
|
|
1: {
|
|
id: 1,
|
|
account_id: 1,
|
|
name: 'Test',
|
|
description: 'Some team',
|
|
is_member: true,
|
|
},
|
|
2: {
|
|
id: 2,
|
|
account_id: 1,
|
|
name: 'Test 1',
|
|
description: 'Some team',
|
|
is_member: false,
|
|
},
|
|
};
|