Skip to content

Commit

Permalink
add banks
Browse files Browse the repository at this point in the history
  • Loading branch information
gmahota committed Aug 16, 2021
1 parent 1bc5844 commit 8ef7d88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ baseRouter
.post("/banks/", banks.create_bank)

baseRouter
.get("/banksAccounts", banksAccount.get_all)
.get("/banksAccounts/:id", banksAccount.create_bankAccount)
.post("/banksAccounts/", banksAccount.create_bankAccount)
.get("/bankaccounts", banksAccount.get_all)
.get("/bankaccounts/:id", banksAccount.create_bankAccount)
.post("/bankaccounts/", banksAccount.create_bankAccount)

baseRouter.get("/customers", get_all_customers)
baseRouter.get("/customers/:id", get_customer)
Expand Down

0 comments on commit 8ef7d88

Please sign in to comment.