mirror of
https://github.com/koel/koel
synced 2024-12-22 02:23:14 +00:00
23 lines
341 B
JavaScript
23 lines
341 B
JavaScript
export default {
|
|
currentUser: {
|
|
id: 1,
|
|
name: 'Phan An',
|
|
email: 'me@phanan.net',
|
|
is_admin: true,
|
|
},
|
|
|
|
users: [
|
|
{
|
|
id: 1,
|
|
name: 'Phan An',
|
|
email: 'me@phanan.net',
|
|
is_admin: true,
|
|
},
|
|
{
|
|
id: 2,
|
|
name: 'John Doe',
|
|
email: 'john@doe.tld',
|
|
is_admin: false,
|
|
},
|
|
]
|
|
};
|