removed unused pages and aside links

This commit was merged in pull request #20.
This commit is contained in:
victorAnumudu
2025-04-25 08:23:47 +01:00
parent 457d48cd3b
commit 945e756276
25 changed files with 279 additions and 152 deletions
+6 -21
View File
@@ -68,29 +68,14 @@ export const getTransactions = (reqData) => {
return getAuxEnd(`/transactions`, postData)
}
// FUNCTION TO GET APPLIED LOANS TABLE
export const applyLoan = (reqData) => {
// FUNCTION TO GET REPAYMENTS TABLE
export const getRepayments = (reqData) => {
const postData = { ...reqData }
return getAuxEnd(`/office/loan/apply`, postData)
return getAuxEnd(`/repayments`, postData)
}
// FUNCTION TO GET APPLIED LOANS TABLE
export const loanOffers = (reqData) => {
// FUNCTION TO GET LOAN CHARGES TABLE
export const getLoanCharges = (reqData) => {
const postData = { ...reqData }
return getAuxEnd(`/office/offers`, postData)
}
// FUNCTION TO GET APPLIED LOANS TABLE
export const selectLoan = (reqData) => {
const postData = { ...reqData }
return getAuxEnd(`/office/loan/select`, postData)
}
// FUNCTION TO GET APPLIED LOANS TABLE
export const approvedLoan = (reqData) => {
const postData = { ...reqData }
return getAuxEnd(`/office/loan/approved`, postData)
return getAuxEnd(`/transactions`, postData)
}