-
Notifications
You must be signed in to change notification settings - Fork 527
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
Fix #5251 Modify Feature Flag Names to reflect those on Oppia Web #5257
Conversation
… link and should be clickable.
- Replace brittle string manipulation with robust regex matching using .toRegex().find() - Introduce new helper functions for code simplification
- Replace brittle string manipulation with robust regex matching using .toRegex().find() - Introduce new helper functions for code simplification
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.
Thanks @Tejas-67!
Your changes on the FeatureFlagConstants look good, but the remaining file changes need to be reverted.
Whenever creating a new PR, you should create a new branch based off of the develop branch. You can do this by:
git checkout develop
checkout your local developgit pull upstream develop
sync with upstreamgit checkout -b new-branch-name
create clean branch
In case you had mistakenly made commits on you local develop branch, you can do a hard reset or delete the branch and checkout a clean one from upstream.
policyDescription = resourceHandler.getStringInLocale(R.string.privacy_policy_content) | ||
policyWebLink = resourceHandler.getStringInLocale(R.string.privacy_policy_web_link) | ||
} else if (policyPage == PolicyPage.TERMS_OF_SERVICE) { | ||
policyDescription = | ||
resourceHandler.getStringInLocale(R.string.terms_of_service_content) | ||
policyDescription = resourceHandler.getStringInLocale(R.string.terms_of_service_content) |
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.
These changes are not related to this PR. Please revert
@@ -236,4 +236,4 @@ | |||
<li>26 Sep 2015: Revised terms added.</li> | |||
</ul> | |||
</]]></string> |
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 file change too is not related to this PR.
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 file should not be part of this PR
@adhiamboperes Okay, I will close this PR and create a fresh one. |
Explanation
Modified feature flag names to respective new names as described here.
Essential Checklist
For UI-specific PRs only
If your PR includes UI-related changes, then: