-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19902 from wordpress-mobile/Stats-Traffic-Tab-Fea…
…ture-Flag Stats traffic tab feature flag
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
16 changes: 16 additions & 0 deletions
16
WordPress/src/main/java/org/wordpress/android/util/config/StatsTrafficTabFeatureConfig.kt
This file contains 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package org.wordpress.android.util.config | ||
|
||
import org.wordpress.android.BuildConfig | ||
import org.wordpress.android.annotation.Feature | ||
import javax.inject.Inject | ||
|
||
private const val STATS_TRAFFIC_TAB_REMOTE_FIELD = "stats_traffic_tab" | ||
|
||
@Feature(STATS_TRAFFIC_TAB_REMOTE_FIELD, false) | ||
class StatsTrafficTabFeatureConfig @Inject constructor( | ||
appConfig: AppConfig | ||
) : FeatureConfig( | ||
appConfig, | ||
BuildConfig.STATS_TRAFFIC_TAB, | ||
STATS_TRAFFIC_TAB_REMOTE_FIELD | ||
) |