-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Move SuggestionModalService to services/ #6935
Conversation
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.
No issues, just one question.
.github/CODEOWNERS
Outdated
@@ -429,8 +429,6 @@ | |||
# | |||
# https://help.github.com/en/articles/about-code-owners | |||
# | |||
# On modifying this list make sure to keep the CODEOWNER_IMPORTANT_PATHS list |
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.
Why delete? /cc @DubeySandeep
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.
Oh that was unintentional. Sorry for that. Fixed!
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.
@YashJipkate, LGTM! (Just a few simple comments.)
@@ -20,7 +20,7 @@ require('domain/utilities/UrlInterpolationService.ts'); | |||
require('pages/exploration-player-page/services/exploration-engine.service.ts'); | |||
require('pages/exploration-player-page/services/player-position.service.ts'); | |||
require('pages/exploration-player-page/services/player-transcript.service.ts'); | |||
require('pages/suggestion_editor/SuggestionModalService.ts'); | |||
require('services/SuggestionModalService.ts'); | |||
require('services/AlertsService.ts'); |
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.
This should go above (alphabetically sorted order), right?
@@ -22,7 +22,7 @@ require('pages/exploration-editor-page/services/exploration-data.service.ts'); | |||
require('pages/exploration-editor-page/services/exploration-states.service.ts'); | |||
require( | |||
'pages/exploration-editor-page/feedback-tab/services/thread-data.service.ts'); | |||
require('pages/suggestion_editor/SuggestionModalService.ts'); | |||
require('services/SuggestionModalService.ts'); |
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.
Ditto.
Assigned all codeowners as this PR is pretty small and can be reviewed/approved by others at the same time. |
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.
lgtm!
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.
LGTM
@nithusha21 @aks681 PTAL |
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.
LGTM.
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.
LGTM. Thanks!
Explanation
This PR moves SuggestionModalService to services/ as decided in folders-by-feature.
Checklist
python scripts/pre_commit_linter.py
andbash scripts/run_frontend_tests.sh
.