diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 479bc3f21d4a..b5400ee60b24 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -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 diff --git a/WordPress/src/main/java/org/wordpress/android/util/config/SiteEditorMVPFeatureConfig.kt b/WordPress/src/main/java/org/wordpress/android/util/config/SiteEditorMVPFeatureConfig.kt index e23412b476d1..e2bf3fd3d85b 100644 --- a/WordPress/src/main/java/org/wordpress/android/util/config/SiteEditorMVPFeatureConfig.kt +++ b/WordPress/src/main/java/org/wordpress/android/util/config/SiteEditorMVPFeatureConfig.kt @@ -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 )