diff options
author | Dan Finlay <542863+danfinlay@users.noreply.github.com> | 2019-02-26 03:10:13 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2019-02-26 03:10:13 +0800 |
commit | f507f2a92710285679123c9429a37c9e330c7cac (patch) | |
tree | 30225a55e9d8fc273304f4e2548413a08f008aef /docs/secret-preferences.md | |
parent | fdc7eb211340b3af035a7f7c023155a8f1b1675d (diff) | |
download | tangerine-wallet-browser-f507f2a92710285679123c9429a37c9e330c7cac.tar tangerine-wallet-browser-f507f2a92710285679123c9429a37c9e330c7cac.tar.gz tangerine-wallet-browser-f507f2a92710285679123c9429a37c9e330c7cac.tar.bz2 tangerine-wallet-browser-f507f2a92710285679123c9429a37c9e330c7cac.tar.lz tangerine-wallet-browser-f507f2a92710285679123c9429a37c9e330c7cac.tar.xz tangerine-wallet-browser-f507f2a92710285679123c9429a37c9e330c7cac.tar.zst tangerine-wallet-browser-f507f2a92710285679123c9429a37c9e330c7cac.zip |
Feature Flag + Mobile Sync (#5955)
Diffstat (limited to 'docs/secret-preferences.md')
-rw-r--r-- | docs/secret-preferences.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/secret-preferences.md b/docs/secret-preferences.md new file mode 100644 index 000000000..f9d01a503 --- /dev/null +++ b/docs/secret-preferences.md @@ -0,0 +1,10 @@ +# Secret Preferences + +Sometimes we want to test a feature in the wild that may not be ready for public consumption. + +One example is our "sync with mobile" feature, which didn't make sense to roll out before the mobile version was live. + +To enable features like this, first open the background console, and then you can use the global method `global.setPreference(key, value)`. + +For example, if the feature flag was a booelan was called `mobileSync`, you might type `setPreference('mobileSync', true)`. + |