mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
15 lines
179 B
JavaScript
15 lines
179 B
JavaScript
export const ACTIONS = {
|
|
|
|
};
|
|
|
|
export const ROLES = {
|
|
guest: 'guest',
|
|
vk: 'vk',
|
|
};
|
|
|
|
export const EMPTY_USER = {
|
|
token: '',
|
|
name: '',
|
|
role: ROLES.guest,
|
|
picture: '',
|
|
};
|