Skip to content

Commit bb5ac78

Browse files
author
Thomas Horta
authored
Merge pull request #18454 from wordpress-mobile/issue/18441-site-editor-remote-ff
[Site Editor] Add remote FF to SiteEditorMVP and default to on
2 parents 4d2eff9 + 55d5762 commit bb5ac78

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
22.5
44
-----
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]
56
* [*] Adds a button to enable account closure from the account settings screen [https://github.com/wordpress-mobile/WordPress-Android/pull/18412]
67

78
22.4
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
package org.wordpress.android.util.config
22

33
import org.wordpress.android.BuildConfig
4-
import org.wordpress.android.annotation.FeatureInDevelopment
4+
import org.wordpress.android.annotation.Feature
55
import javax.inject.Inject
66

7-
@FeatureInDevelopment
7+
private const val SITE_EDITOR_MVP_REMOTE_FIELD = "site_editor_mvp"
8+
9+
@Feature(SITE_EDITOR_MVP_REMOTE_FIELD, true)
810
class SiteEditorMVPFeatureConfig @Inject constructor(
911
appConfig: AppConfig
1012
) : FeatureConfig(
1113
appConfig,
1214
BuildConfig.SITE_EDITOR_MVP,
15+
SITE_EDITOR_MVP_REMOTE_FIELD
1316
)

0 commit comments

Comments
 (0)