Chatwoot/app/javascript/dashboard/store/modules/specs/teams/fixtures.js

17 lines
245 B
JavaScript
Raw Normal View History

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,
},
};