Skip to content

Commit

Permalink
Merge pull request #18454 from wordpress-mobile/issue/18441-site-edit…
Browse files Browse the repository at this point in the history
…or-remote-ff

[Site Editor] Add remote FF to SiteEditorMVP and default to on
  • Loading branch information
Thomas Horta authored May 19, 2023
2 parents 4d2eff9 + 55d5762 commit bb5ac78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

22.5
-----
* [***] Enables editing of the site homepage for sites using block-based themes directly from the pages list. [https://github.com/wordpress-mobile/WordPress-Android/pull/18454]
* [*] Adds a button to enable account closure from the account settings screen [https://github.com/wordpress-mobile/WordPress-Android/pull/18412]

22.4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package org.wordpress.android.util.config

import org.wordpress.android.BuildConfig
import org.wordpress.android.annotation.FeatureInDevelopment
import org.wordpress.android.annotation.Feature
import javax.inject.Inject

@FeatureInDevelopment
private const val SITE_EDITOR_MVP_REMOTE_FIELD = "site_editor_mvp"

@Feature(SITE_EDITOR_MVP_REMOTE_FIELD, true)
class SiteEditorMVPFeatureConfig @Inject constructor(
appConfig: AppConfig
) : FeatureConfig(
appConfig,
BuildConfig.SITE_EDITOR_MVP,
SITE_EDITOR_MVP_REMOTE_FIELD
)

0 comments on commit bb5ac78

Please sign in to comment.