export const RESTART_ON_REMOUNT = '@@saga-injector/restart-on-remount';
export const DAEMON = '@@saga-injector/daemon';
export const ONCE_TILL_UNMOUNT = '@@saga-injector/once-till-unmount';
export const BASENAME = process.env.PUBLIC_PATH || 'civmanage';
export const AUTHORITY = {
LOGIN: 'LOGIN',
admin: 'admin',
super: 'super',
};
export const USER_MODE = {
ADMIN: 'admin',
SUPER: 'super',
COMMON: 'common',
};
-
邓超 authored86f1afb0