Skip to content

Commit

Permalink
Merge pull request #13268 from woocommerce/issue/13267-enable-hidding…
Browse files Browse the repository at this point in the history
…-sites

Enable hiding sites feature flag
  • Loading branch information
hafizrahman authored Jan 9, 2025
2 parents 9ec41cd + bdd26b1 commit c2c1e55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- [**] Introduced fallback logic for the barcode scanner to use the front-facing camera when a back-facing camera is unavailable [https://github.com/woocommerce/woocommerce-android/pull/13230]
- [*] It possible to quickly open plugins page from the plugins list in the up to update an outdated plugin [https://github.com/woocommerce/woocommerce-android/pull/13246]
- [**] Fixed a bug when refunded items were displayed on the refund screen [https://github.com/woocommerce/woocommerce-android/pull/13212]
- [**] Enable hiding and disabling push notification for sites from site picker [https://github.com/woocommerce/woocommerce-android/issues/13107]

21.3
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ enum class FeatureFlag {
WC_SHIPPING_BANNER,
BETTER_CUSTOMER_SEARCH_M2,
ORDER_CREATION_AUTO_TAX_RATE,
REVAMP_WOO_SHIPPING,
HIDE_SITES_FROM_SITE_PICKER -> PackageUtils.isDebugBuild()
REVAMP_WOO_SHIPPING -> PackageUtils.isDebugBuild()

NEW_SHIPPING_SUPPORT,
ENDLESS_CAMPAIGNS_SUPPORT,
OBJECTIVE_SECTION,
BULK_UPDATE_ORDERS_STATUS -> true
BULK_UPDATE_ORDERS_STATUS,
HIDE_SITES_FROM_SITE_PICKER -> true
}
}
}

0 comments on commit c2c1e55

Please sign in to comment.