mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
42 lines
801 B
JavaScript
42 lines
801 B
JavaScript
|
export const contacts = [
|
||
|
// user with edited name
|
||
|
{
|
||
|
type: 'user',
|
||
|
email: 'test-user@example.com',
|
||
|
first_name: 'Test',
|
||
|
last_name: 'User',
|
||
|
name: 'Test User',
|
||
|
},
|
||
|
// user with default name (email prefix)
|
||
|
{
|
||
|
type: 'user',
|
||
|
email: 'test@example.com',
|
||
|
first_name: 'test',
|
||
|
},
|
||
|
// no last name
|
||
|
{
|
||
|
type: 'user',
|
||
|
first_name: 'Eratosthenes',
|
||
|
email: 'eratosthenes@example.com',
|
||
|
},
|
||
|
// more users
|
||
|
{
|
||
|
type: 'user',
|
||
|
first_name: 'Claudius',
|
||
|
last_name: 'Ptolemy',
|
||
|
email: 'ptolemy@example.com',
|
||
|
},
|
||
|
{
|
||
|
type: 'user',
|
||
|
first_name: 'Abd al-Rahman',
|
||
|
last_name: 'Al-Sufi',
|
||
|
email: 'al-sufi@example.com',
|
||
|
},
|
||
|
{
|
||
|
type: 'user',
|
||
|
first_name: 'Nicolaus',
|
||
|
last_name: 'Copernicus',
|
||
|
email: 'copernicus@example.com',
|
||
|
},
|
||
|
]
|