Skip to content

Commit

Permalink
Add routes for our new processes to main routes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cruikshanks committed Sep 10, 2024
1 parent 94f35a0 commit f46e635
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ const returnsRoutes = require('./modules/returns/routes')
const returnVersionsRoutes = require('./modules/return-versions/routes.js')
const modLogsRoutes = require('./modules/mod-logs/routes.js')

const NaldDataRoutes = require('./modules/nald-data/routes.js')
const CleanRoutes = require('./modules/clean/routes.js')

module.exports = [
...chargingImportRoutes,
...coreRoutes,
Expand All @@ -17,5 +20,7 @@ module.exports = [
...naldImportRoutes,
...returnsRoutes,
...returnVersionsRoutes,
...modLogsRoutes
...modLogsRoutes,
...NaldDataRoutes,
...CleanRoutes
]

0 comments on commit f46e635

Please sign in to comment.