mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
21 lines
300 B
JavaScript
21 lines
300 B
JavaScript
export const ROLES = {
|
|
guest: 'guest',
|
|
vk: 'vk',
|
|
};
|
|
|
|
export const DEFAULT_USER = {
|
|
new_messages: 0,
|
|
place_types: {},
|
|
random_url: '',
|
|
role: ROLES.guest,
|
|
routes: {},
|
|
success: false,
|
|
id: null,
|
|
token: null,
|
|
userdata: {
|
|
name: '',
|
|
agent: '',
|
|
ip: '',
|
|
photo: '',
|
|
}
|
|
};
|