From 4cc441518239d1ad26e88bb21ab44a96be4fc5e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=B8=85?= Date: Thu, 4 Apr 2019 14:57:38 +0800 Subject: [PATCH] feat: site default authority="[admin]" --- src/utils/authority.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/utils/authority.js b/src/utils/authority.js index 288c1e68..396a9fbd 100644 --- a/src/utils/authority.js +++ b/src/utils/authority.js @@ -1,6 +1,4 @@ // use localStorage to store the authority info, which might be sent from server in actual project. -const { NODE_ENV } = process.env; - export function getAuthority(str) { // return localStorage.getItem('antd-pro-authority') || ['admin', 'user']; const authorityString = @@ -15,12 +13,11 @@ export function getAuthority(str) { if (typeof authority === 'string') { return [authority]; } - if (!authority && NODE_ENV !== 'production') { + if (!authority && APP_TYPE === 'site') { return ['admin']; } return authority; } - export function setAuthority(authority) { const proAuthority = typeof authority === 'string' ? [authority] : authority; return localStorage.setItem('antd-pro-authority', JSON.stringify(proAuthority)); -- GitLab