feat: add Settings/Accounts/Emails Emails Sync section accounts list (#2957)
Closes #2888 Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
@ -1,6 +1,14 @@
|
||||
import { Account } from '@/accounts/types/Account';
|
||||
import { Account } from '@/accounts/types/account';
|
||||
|
||||
export const mockedAccounts: Account[] = [
|
||||
{ email: 'thomas@twenty.com', uuid: '0794b782-f52e-48c3-977e-b0f57f90de24' },
|
||||
{ email: 'thomas@twenty.dev', uuid: 'dc66a7ec-56b2-425b-a8e8-26ff0396c3aa' },
|
||||
{
|
||||
email: 'thomas@twenty.com',
|
||||
isSynced: true,
|
||||
uuid: '0794b782-f52e-48c3-977e-b0f57f90de24',
|
||||
},
|
||||
{
|
||||
email: 'thomas@twenty.dev',
|
||||
isSynced: false,
|
||||
uuid: 'dc66a7ec-56b2-425b-a8e8-26ff0396c3aa',
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user