aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/src/Config.js
diff options
context:
space:
mode:
authorMaximilian Krambach <[email protected]>2018-05-23 10:56:23 +0000
committerMaximilian Krambach <[email protected]>2018-05-23 10:56:23 +0000
commitf7ed80ff6a66f2c5ee6f1c3daebd597f4592733d (patch)
tree3dc2b4dde55c14825b9dfa9db7ed225db77ab9d0 /lang/js/src/Config.js
parentjs: transfer encoding changes (diff)
downloadgpgme-f7ed80ff6a66f2c5ee6f1c3daebd597f4592733d.tar.gz
gpgme-f7ed80ff6a66f2c5ee6f1c3daebd597f4592733d.zip
js: remove openpgp mode
-- * After discussion, that mode is not required, and can result in being quite misleading and a maintenance hassle later on.
Diffstat (limited to 'lang/js/src/Config.js')
-rw-r--r--lang/js/src/Config.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/js/src/Config.js b/lang/js/src/Config.js
index e18728de..e85bbb82 100644
--- a/lang/js/src/Config.js
+++ b/lang/js/src/Config.js
@@ -19,13 +19,13 @@
*/
export const availableConf = {
- api_style: ['gpgme', 'gpgme_openpgpjs'],
null_expire_is_never: [true, false],
- unconsidered_params: ['warn','reject', 'ignore'],
+ // cachedKeys: Some Key info will not be queried on each invocation,
+ // manual refresh by Key.refresh()
+ cachedKeys: [true, false]
};
export const defaultConf = {
- api_style: 'gpgme',
null_expire_is_never: false,
- unconsidered_params: 'reject',
+ cachedKeys: false
}; \ No newline at end of file