-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from ArslanKibria98/develop
Dynamic threshold and improvements
- Loading branch information
Showing
17 changed files
with
23 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
export * as userController from "./user.controller"; | ||
export * as securityKeyController from "./securityKey.controller"; | ||
export * as jobController from "./job.controller"; | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1 @@ | ||
import { Router } from "express"; | ||
import userRoute from "./user.route"; | ||
import securityKeyRoute from "./securityKey.route"; | ||
import jobRoute from "./job.route"; | ||
|
||
const router = Router(); | ||
|
||
const defaultRoutes = [ | ||
{ | ||
path: "/user", | ||
route: userRoute, | ||
}, | ||
|
||
{ | ||
path: "/securityKey", | ||
route: securityKeyRoute, | ||
}, | ||
{ | ||
path: "/jobs", | ||
route: jobRoute, | ||
}, | ||
]; | ||
|
||
defaultRoutes.forEach((route) => { | ||
router.use(route.path, route.route); | ||
}); | ||
|
||
export default router; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
export * as userService from "./user.service"; | ||
export * as securityKeyService from "./securityKey.service"; | ||
export * as web3Service from "./web3.service"; | ||
export * as cosmWasmService from "./cosmWasm.service"; | ||
export * as axiosService from "./axios.service"; | ||
export * as jobService from "./job.service"; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters