mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-01 21:03:46 +08:00
Co-authored-by: Pranav Raj S <[email protected]> Co-authored-by: Sojan <[email protected]>
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,
|
|
},
|
|
};
|