Browse Source

Change the default role to admin

pull/622/head
jim 8 years ago
parent
commit
74b1e62e83
  1. 2
      src/utils/authority.js

2
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) {

Loading…
Cancel
Save