2022-08-27 11:52:29 +05:30
|
|
|
export const eventlistenersMockDefaultMap = [
|
|
|
|
{
|
|
|
|
key: 'shown',
|
|
|
|
namespace: 'atwho',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'shown-users',
|
|
|
|
namespace: 'atwho',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'shown-issues',
|
|
|
|
namespace: 'atwho',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'shown-milestones',
|
|
|
|
namespace: 'atwho',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'shown-mergerequests',
|
|
|
|
namespace: 'atwho',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'shown-labels',
|
|
|
|
namespace: 'atwho',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'shown-snippets',
|
|
|
|
namespace: 'atwho',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'shown-contacts',
|
|
|
|
namespace: 'atwho',
|
|
|
|
},
|
|
|
|
];
|
2023-01-13 00:05:48 +05:30
|
|
|
|
|
|
|
export const crmContactsMock = [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
email: 'contact.1@email.com',
|
2023-03-17 16:20:25 +05:30
|
|
|
first_name: 'Contact',
|
|
|
|
last_name: 'One',
|
2023-01-13 00:05:48 +05:30
|
|
|
search: 'contact.1@email.com',
|
|
|
|
state: 'active',
|
|
|
|
set: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
email: 'contact.2@email.com',
|
2023-03-17 16:20:25 +05:30
|
|
|
first_name: 'Contact',
|
|
|
|
last_name: 'Two',
|
2023-01-13 00:05:48 +05:30
|
|
|
search: 'contact.2@email.com',
|
|
|
|
state: 'active',
|
|
|
|
set: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 3,
|
|
|
|
email: 'contact.3@email.com',
|
2023-03-17 16:20:25 +05:30
|
|
|
first_name: 'Contact',
|
|
|
|
last_name: 'Three',
|
2023-01-13 00:05:48 +05:30
|
|
|
search: 'contact.3@email.com',
|
|
|
|
state: 'inactive',
|
|
|
|
set: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 4,
|
|
|
|
email: 'contact.4@email.com',
|
2023-03-17 16:20:25 +05:30
|
|
|
first_name: 'Contact',
|
|
|
|
last_name: 'Four',
|
2023-01-13 00:05:48 +05:30
|
|
|
search: 'contact.4@email.com',
|
|
|
|
state: 'inactive',
|
|
|
|
set: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 5,
|
|
|
|
email: 'contact.5@email.com',
|
2023-03-17 16:20:25 +05:30
|
|
|
first_name: 'Contact',
|
|
|
|
last_name: 'Five',
|
2023-01-13 00:05:48 +05:30
|
|
|
search: 'contact.5@email.com',
|
|
|
|
state: 'active',
|
|
|
|
set: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 5,
|
|
|
|
email: 'contact.6@email.com',
|
2023-03-17 16:20:25 +05:30
|
|
|
first_name: 'Contact',
|
|
|
|
last_name: 'Six',
|
2023-01-13 00:05:48 +05:30
|
|
|
search: 'contact.6@email.com',
|
|
|
|
state: 'active',
|
|
|
|
set: undefined, // On purpose
|
|
|
|
},
|
|
|
|
];
|