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:
Thaïs
2023-12-13 17:37:12 +01:00
committed by GitHub
parent 9eddaffac4
commit 856b78abc7
14 changed files with 211 additions and 79 deletions

View File

@ -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',
},
];