SEC_Warehouse/constants/auth.js

14 lines
277 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 本地存储 key。
*/
export const AUTH_STORAGE_KEYS = Object.freeze({
TOKEN: 'smarthome_token',
USER: 'smarthome_user'
})
/**
* 登录开关:当前为 false便于功能联调。
* 恢复鉴权时改为 true 即可。
*/
export const AUTH_ENABLED = false