You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
438 B
25 lines
438 B
8 years ago
|
export default {
|
||
|
meta: {
|
||
|
admin: 1,
|
||
|
domain: 'example.com',
|
||
|
me: 2,
|
||
|
},
|
||
|
accounts: {
|
||
|
1: {
|
||
|
acct: 'admin',
|
||
|
avatar: '/avatars/original/missing.png',
|
||
|
id: 1,
|
||
|
url: 'https://example.com/@admin',
|
||
|
},
|
||
|
2: {
|
||
|
acct: 'user',
|
||
|
avatar: '/avatars/original/missing.png',
|
||
|
id: 1,
|
||
|
url: 'https://example.com/@user',
|
||
|
},
|
||
|
},
|
||
|
media_attachments: {
|
||
|
accept_content_types: [],
|
||
|
},
|
||
|
};
|