Browse Source

회원가입시 앱권한 ROLE_USER -> USER 변경

pull/2/head
junh_eee(이준희) 2 years ago
parent
commit
d4e3c38e8b
  1. 6
      src/configs/constants.js

6
src/configs/constants.js

@ -25,14 +25,16 @@ export const FORM_PROC_TYPE = {
};
export const ROLE = {
NONE: 'ROLE_NONE',
USER: 'ROLE_USER',
// USER: 'ROLE_USER',
USER: 'USER',
ADMIN: 'ROLE_ADMIN'
};
export const ACCOUNT = {
cstrmDivCd: 'MEMBER',
cstrmStatusCd: 'A',
authId: 'ROLE_USER',
// authId: 'ROLE_USER',
authId: 'USER',
siteCode: 'DRON',
joinCrtfyCd: 'HP_CRTFD'
};

Loading…
Cancel
Save