|
- import {apiPath} from "../auth/utils";
-
- // GET request
-
- //Group Config
- export const GET_GROUP_LIST_PATH = '/group';
- export const GET_GROUP_COMBO_PATH = '/group/combo';
- export const GET_GROUP_MEMBER_LIST_PATH = '/group/member';
- export const GET_GROUP_AUTH_LIST = '/group/auth/combo';
-
- export const GET_USER_PATH = '/user/gld';
- export const GET_AUTH_LIST = '/user/auth/combo';
- export const GET_USER_COMBO_LIST = '/user/combo';
- export const GET_USER_LOCK = apiPath+'/user/lock';
- export const GET_USER_UNLOCK = apiPath+'/user/unlock';
-
- export const GET_IND_USER_PATH = apiPath+'/user/ind';
- export const GET_IND_USER_VERIFY = apiPath+'/user/verify';
- export const POST_IND_USER = apiPath+'/user/ind';
-
- export const GET_ORG_USER_PATH = apiPath+'/user/org';
-
- export const GET_ORG_PATH = apiPath+'/org';
- export const GET_ORG_FROM_USER_PATH = apiPath+'/org/from-user';
- export const POST_ORG_SAVE_PATH = apiPath+'/org/save';
-
-
- //File Up/Download
- export const FILE_UP_POST = apiPath+'/file/ul';
- export const FILE_DOWN_GET = apiPath+"/file/dl";
- export const POST_FILE_LIST = apiPath+'/file/list';
- export const GET_FILE_DELETE = apiPath+'/file/delete';
- //export const FILE_DOWN_GET = ({id,skey,filename})=>{ return apiPath+'/file/dl/'+id+'/'+skey+'/'+filename};
-
- // POST request
- //Login
- export const POST_LOGIN = '/login';
-
- //register
- export const POST_PUBLIC_USER_REGISTER = apiPath+'/user/register';
-
-
-
- //Public
- export const GET_PUBLIC_ORG_USER_LIST = apiPath+'/user/listOrg';
|