-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Remove RS Unified Comments experimental toggle #23170
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
aac8ffd
Remove RS Unified Comments experimental toggle; auto-enable for eligi…
nbradbury 70da90f
Correct the shouldUseRsComments comment about WP.com sites
nbradbury 39bc77e
Extract the shared wordpress-rs eligibility check into SiteUtils.canU…
nbradbury e05c8a5
Drop the write-only SITE extra from the legacy comments Intent
nbradbury 86e7d44
Add tests for SiteUtils.canUseWpRs
nbradbury 855bea7
Drop the now-redundant semicolon after the last Feature entry
nbradbury 2dcd921
Merge remote-tracking branch 'origin/trunk' into remove-rs-comments-flag
nbradbury File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
WordPress/src/main/java/org/wordpress/android/ui/ActivityLauncherEntryPoint.kt
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -261,6 +261,18 @@ public static boolean isAccessedViaWPComRest(@NonNull SiteModel site) { | |||||
| return site.getOrigin() == SiteModel.ORIGIN_WPCOM_REST; | ||||||
| } | ||||||
|
|
||||||
| /** | ||||||
| * Whether the wordpress-rs screens (posts, pages, comments) should be used for {@code site} | ||||||
| * instead of the legacy (FluxC) ones. Keep this as the single definition so those screens | ||||||
| * can't drift apart for the same site. | ||||||
| * <p> | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| * An application password is the requirement. That includes WP.com-accessed sites, since | ||||||
| * Atomic and Jetpack sites can hold one (only simple WP.com sites can't). | ||||||
| */ | ||||||
| public static boolean canUseWpRs(@Nullable SiteModel site) { | ||||||
| return site != null && site.hasApplicationPassword(); | ||||||
| } | ||||||
|
|
||||||
| public static String getSiteIconUrl(SiteModel site, int size) { | ||||||
| return PhotonUtils.getPhotonImageUrl(site.getIconUrl(), size, size, PhotonUtils.Quality.HIGH, | ||||||
| site.isPrivateWPComAtomic()); | ||||||
|
|
||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I tried for a while but was unable to generate a comment notification for testing this particular change. Were you able to test this flow?
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.
@dcalhoun Yes, I was able to test this successfully.