2016-05-22 04:50:15 +02:00
|
|
|
|
namespace Bit.App
|
|
|
|
|
{
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
2017-01-31 01:26:39 +01:00
|
|
|
|
public const string AndroidAppProtocol = "androidapp://";
|
2017-09-09 19:41:10 +02:00
|
|
|
|
public const string iOSAppProtocol = "iosapp://";
|
2017-01-31 01:26:39 +01:00
|
|
|
|
|
2016-07-02 08:01:47 +02:00
|
|
|
|
public const string SettingFingerprintUnlockOn = "setting:fingerprintUnlockOn";
|
|
|
|
|
public const string SettingPinUnlockOn = "setting:pinUnlockOn";
|
|
|
|
|
public const string SettingLockSeconds = "setting:lockSeconds";
|
2017-04-20 03:05:03 +02:00
|
|
|
|
public const string SettingGaOptOut = "setting:googleAnalyticsOptOut";
|
2017-07-21 17:39:22 +02:00
|
|
|
|
public const string SettingDisableTotpCopy = "setting:disableAutoCopyTotp";
|
2017-05-29 17:38:03 +02:00
|
|
|
|
public const string AutofillPersistNotification = "setting:persistNotification";
|
|
|
|
|
public const string AutofillPasswordField = "setting:autofillPasswordField";
|
2016-06-28 06:55:53 +02:00
|
|
|
|
|
2016-07-02 08:01:47 +02:00
|
|
|
|
public const string PasswordGeneratorLength = "pwGenerator:length";
|
|
|
|
|
public const string PasswordGeneratorUppercase = "pwGenerator:uppercase";
|
|
|
|
|
public const string PasswordGeneratorLowercase = "pwGenerator:lowercase";
|
|
|
|
|
public const string PasswordGeneratorNumbers = "pwGenerator:numbers";
|
|
|
|
|
public const string PasswordGeneratorMinNumbers = "pwGenerator:minNumbers";
|
|
|
|
|
public const string PasswordGeneratorSpecial = "pwGenerator:special";
|
|
|
|
|
public const string PasswordGeneratorMinSpecial = "pwGenerator:minSpecial";
|
|
|
|
|
public const string PasswordGeneratorAmbiguous = "pwGenerator:ambiguous";
|
|
|
|
|
|
|
|
|
|
public const string PushInitialPromptShown = "push:initialPromptShown";
|
|
|
|
|
public const string PushLastRegistrationDate = "push:lastRegistrationDate";
|
2016-07-02 21:20:06 +02:00
|
|
|
|
|
|
|
|
|
public const string ExtensionStarted = "extension:started";
|
|
|
|
|
public const string ExtensionActivated = "extension:activated";
|
2016-08-06 05:58:31 +02:00
|
|
|
|
|
2017-06-01 05:09:21 +02:00
|
|
|
|
public const string SecurityStamp = "other:securityStamp";
|
2016-08-09 01:00:36 +02:00
|
|
|
|
public const string LastActivityDate = "other:lastActivityDate";
|
2017-07-13 17:11:04 +02:00
|
|
|
|
public const string LastCacheClearDate = "other:cacheClearDate";
|
2016-08-06 05:58:31 +02:00
|
|
|
|
public const string Locked = "other:locked";
|
|
|
|
|
public const string LastLoginEmail = "other:lastLoginEmail";
|
|
|
|
|
public const string LastSync = "other:lastSync";
|
2017-07-28 23:21:39 +02:00
|
|
|
|
public const string LastBuildKey = "LastBuild";
|
2017-08-23 17:40:40 +02:00
|
|
|
|
public const string BaseUrl = "other:baseUrl";
|
2017-08-29 00:08:26 +02:00
|
|
|
|
public const string WebVaultUrl = "other:webVaultUrl";
|
2017-08-23 17:40:40 +02:00
|
|
|
|
public const string ApiUrl = "other:apiUrl";
|
|
|
|
|
public const string IdentityUrl = "other:identityUrl";
|
2017-07-22 21:38:08 +02:00
|
|
|
|
|
|
|
|
|
public const int SelectFileRequestCode = 42;
|
2017-07-23 03:06:53 +02:00
|
|
|
|
public const int SelectFilePermissionRequestCode = 43;
|
2016-05-22 04:50:15 +02:00
|
|
|
|
}
|
|
|
|
|
}
|