From 74b1e62e8351389d487f1fa213961cbc22bc1b4c Mon Sep 17 00:00:00 2001 From: jim Date: Mon, 8 Jan 2018 15:47:10 +0800 Subject: [PATCH] Change the default role to admin --- src/utils/authority.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/authority.js b/src/utils/authority.js index 2b5d3b14..dc285655 100644 --- a/src/utils/authority.js +++ b/src/utils/authority.js @@ -1,6 +1,6 @@ // use localStorage to store the authority info, which might be sent from server in actual project. export function getAuthority() { - return localStorage.getItem('antd-pro-authority') || 'guest'; + return localStorage.getItem('antd-pro-authority') || 'admin'; } export function setAuthority(authority) { -- GitLab