chore(flight): refactor routes#29
Conversation
Finishes #149983361
There was a problem hiding this comment.
Unable to resolve path to module '../middleware/middleware' import/no-unresolved
Missing file extension for "../middleware/middleware" import/extensions
| import documentController from '../controllers/documents'; | ||
| import rolesController from '../controllers/roles'; | ||
| import searchController from '../controllers/search'; | ||
| import usersController from '../controllers/users'; |
There was a problem hiding this comment.
Unable to resolve path to module '../controllers/users' import/no-unresolved
Missing file extension for "../controllers/users" import/extensions
| @@ -0,0 +1,68 @@ | |||
| import documentController from '../controllers/documents'; | |||
| import rolesController from '../controllers/roles'; | |||
| import searchController from '../controllers/search'; | |||
There was a problem hiding this comment.
Unable to resolve path to module '../controllers/search' import/no-unresolved
Missing file extension for "../controllers/search" import/extensions
| @@ -0,0 +1,68 @@ | |||
| import documentController from '../controllers/documents'; | |||
| import rolesController from '../controllers/roles'; | |||
There was a problem hiding this comment.
Unable to resolve path to module '../controllers/roles' import/no-unresolved
Missing file extension for "../controllers/roles" import/extensions
| @@ -0,0 +1,68 @@ | |||
| import documentController from '../controllers/documents'; | |||
There was a problem hiding this comment.
Unable to resolve path to module '../controllers/documents' import/no-unresolved
Missing file extension for "../controllers/documents" import/extensions
| import roleRoutes from './roles'; | ||
| import searchRoutes from './search'; | ||
| import userRoutes from './users'; | ||
| import routes from './routes'; |
There was a problem hiding this comment.
Unable to resolve path to module './routes' import/no-unresolved
Missing file extension for "./routes" import/extensions

#149983361 refactor routes