공지사항 /홈 / 리스트 / 상세
This commit is contained in:
@@ -182,6 +182,16 @@ export const API_URL = {
|
||||
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/faq/list`;
|
||||
},
|
||||
|
||||
/* Notice Management - 공지사항 API */
|
||||
noticeList: () => {
|
||||
// POST: 공지사항 목록 조회
|
||||
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/notice/list`;
|
||||
},
|
||||
noticeDetail: () => {
|
||||
// POST: 공지사항 목록 조회
|
||||
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/notice/detail`;
|
||||
},
|
||||
|
||||
/* Extension Management - 부가서비스 API */
|
||||
extensionSmsResend: () => {
|
||||
// POST: SMS 결제 통보 > SMS 재발송
|
||||
@@ -274,51 +284,6 @@ export const API_URL = {
|
||||
return `${API_BASE_URL}/api/v1/empty-token/${API_URL_KEY}/add-send/code`;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
getAppInfo: `${API_BASE_URL}/ewa/common/AppManage/getAppInfo`, // 이용자 APP 버전 조회
|
||||
checkIdentifyInfo: `${API_BASE_URL}/ewa/common/checkIdentifyInfo`, // 신분증검증요청
|
||||
checkPinNum: `${API_BASE_URL}/ewa/common/checkPinNum`, // 인증번호검증(핀 검증)
|
||||
confirmUser: `${API_BASE_URL}/ewa/common/confirmUser`, // 사용자정보조회
|
||||
createUser: `${API_BASE_URL}/ewa/common/createUser`, // 회원가입(고객등록)
|
||||
regLbdyUse: `${API_BASE_URL}/ewa/common/regLbdyUse`, // 생체인증설정여부등록
|
||||
regPinNum: `${API_BASE_URL}/ewa/common/regPinNum`, // 인증번호등록(핀)
|
||||
selfAuth: `${API_BASE_URL}/ewa/common/selfAuth`, // 본인인증정보입력
|
||||
selfAuthNum: `${API_BASE_URL}/ewa/common/selfAuthNum`, // 본인인증(검증)
|
||||
cstmrReadList: `${API_BASE_URL}/ewa/cstmr/readList`, // 고객목록조회
|
||||
stplatReadList: `${API_BASE_URL}/ewa/stplat/readList`, // 약관목록조회
|
||||
login: `${API_BASE_URL}/users/login`, // 고객로그인
|
||||
//login: `${API_BASE_URL}/users/login`, // 고객로그인
|
||||
accountValid: `${API_BASE_URL}/ewa/acnut/accountValid`, // 계좌인증정보입력(검증)
|
||||
createWallet: `${API_BASE_URL}/ewa/wallet/createWallet`, // 이용자 지갑 생성
|
||||
deleteWallet: `${API_BASE_URL}/ewa/wallet/deleteWallet`, // 이용자 지갑 삭제
|
||||
walletReadList: `${API_BASE_URL}/ewa/wallet/readList`, // 이용자지갑 거래내역조회
|
||||
walletRead: `${API_BASE_URL}/ewa/wallet/read`, // 이용자지갑 거래내역상세
|
||||
cstmr: (cstmrNo?: string) => {
|
||||
return `${API_BASE_URL}/ewa/cstmr${cstmrNo ? '/' + cstmrNo : ''}`;
|
||||
}, // 고객
|
||||
cmmntyManage: (id?: string) => {
|
||||
return `${API_BASE_URL}/ewa/manage/cmmnty/CmmntyManage${id ? '/' + id : ''}`;
|
||||
}, // 이용자 커뮤니티
|
||||
codeManage: (id: string) => {
|
||||
return `${API_BASE_URL}/common/codedata/CodeData${id ? '/' + id : ''}`;
|
||||
}, // 공통코드
|
||||
recentRecipients: `${API_BASE_URL}/ewa/wallet/recent`, // 최근 이체대상 조회
|
||||
findUserAlias: `${API_BASE_URL}/ewa/manage/Alias/find`, // 이체를 위한 사용자 이름, 지갑주소 조회
|
||||
depositTrans: `${API_BASE_URL}/ewa/acnut/depositTrans`, // 예금 토큰 이체 , 송금
|
||||
emoneyTrans: `${API_BASE_URL}/ewa/acnut/emoneyTrans`, // 이머니 토큰 이체, 송금
|
||||
convDeposit: `${API_BASE_URL}/ewa/acnut/convDeposit`, // 전환 입금
|
||||
depositConv: `${API_BASE_URL}/ewa/acnut/depositConv`, // 예금 전환
|
||||
payment: `${API_BASE_URL}/ewa/acnut/payment`, // 결제
|
||||
topUp: `${API_BASE_URL}/ewa/manage/emoney/chargeEmoneyToken`, // 충전
|
||||
sendDsuseEmoneyInfo: `${API_BASE_URL}/ewa/manage/emoney/sendDsuseEmoneyInfo`, // 예금 토큰 전환 (타행)
|
||||
dsuseOwnEmoneyToken: `${API_BASE_URL}/ewa/manage/emoney/dsuseOwnEmoneyToken`, // 예금 토큰 전환 (당행)
|
||||
readFranchiseList: `${API_BASE_URL}/ewa/common/voucher/readFranchiseList`, // 사용처 목록 조회
|
||||
readFranchise: (franchiseId: string) => `${API_BASE_URL}/ewa/common/voucher/readFranchise/${franchiseId}`, // 사용처 상세 조회
|
||||
notificationList: `${API_BASE_URL}/com/manage/pushMsg/readList`, // 알림 메세지 목록
|
||||
updateIndict: (mssageManageId: string) => `${API_BASE_URL}/com/manage/pushMsg/updateIndict/${mssageManageId}`, // 알림 메세지 확인 처리
|
||||
*/
|
||||
};
|
||||
|
||||
export type API_URL_TYPE = typeof API_URL;
|
||||
@@ -338,15 +303,6 @@ export const WHITE_LIST_URLS: string[] = [
|
||||
API_URL.fidoRegisterComplete(),
|
||||
API_URL.fidoLoginBegin(),
|
||||
API_URL.fidoLoginComplete(),
|
||||
/*
|
||||
API_URL.confirmUser,
|
||||
|
||||
API_URL.selfAuth,
|
||||
API_URL.selfAuthNum,
|
||||
API_URL.createUser,
|
||||
API_URL.regPinNum,
|
||||
API_URL.stplatReadList,
|
||||
*/
|
||||
];
|
||||
|
||||
export const getApiPathname = (url: string) => {
|
||||
|
||||
@@ -113,7 +113,7 @@ export const ROUTE_NAMES = {
|
||||
notice: {
|
||||
base: '/notice/*',
|
||||
list: 'list',
|
||||
detail: 'detail/:noticeId',
|
||||
detail: 'detail',
|
||||
},
|
||||
faq: {
|
||||
base: '/faq/*',
|
||||
|
||||
Reference in New Issue
Block a user