-
Notifications
You must be signed in to change notification settings - Fork 10
chore(flight): refactor routes #29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Finishes #149983361
| validateQuery, | ||
| validateRole, | ||
| validateUser | ||
| } from '../middleware/middleware'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unable to resolve path to module './routes' import/no-unresolved
Missing file extension for "./routes" import/extensions
#149983361 refactor routes