Spaces:
Runtime error
Runtime error
abhishek-akbari01
commited on
Commit
·
ca229d1
1
Parent(s):
e5ef607
route url change
Browse files
src/routes/private.routes.ts
CHANGED
|
@@ -15,6 +15,7 @@ const privateRouter = Router();
|
|
| 15 |
* 200:
|
| 16 |
* description: The health of the service
|
| 17 |
*/
|
| 18 |
-
privateRouter.post("/
|
|
|
|
| 19 |
|
| 20 |
export default privateRouter;
|
|
|
|
| 15 |
* 200:
|
| 16 |
* description: The health of the service
|
| 17 |
*/
|
| 18 |
+
privateRouter.post("/invoice", multipleUpload, createInvoice);
|
| 19 |
+
// Note: We have use private router here, because it needs to be listen internal request only and for email ingestion.
|
| 20 |
|
| 21 |
export default privateRouter;
|