Fixed KeychainAccessibilityEnum.

This commit is contained in:
Joel Arvidsson 2015-05-29 18:27:35 +02:00
parent f3d9cc8862
commit b05f14f632
1 changed files with 7 additions and 8 deletions

View File

@ -5,12 +5,11 @@
'use strict'; 'use strict';
var KeychainAccessibilityEnum = module.exports = { var KeychainAccessibilityEnum = module.exports = {
NTLM: true, whenUnlocked: true,
MSN: true, afterFirstUnlock: true,
DPA: true, always: true,
RPA: true, whenPasscodeSetThisDeviceOnly: true,
HTTPBasic: true, whenUnlockedThisDeviceOnly: true,
HTTPDigest: true, afterFirstUnlockThisDeviceOnly: true,
HTMLForm: true, alwaysThisDeviceOnly: true,
Default: true,
}; };