Bitwarden-app-android-iphon.../src/Core/Constants.cs

42 lines
2.4 KiB
C#
Raw Normal View History

2019-04-03 20:21:54 +02:00
namespace Bit.Core
{
public static class Constants
{
2019-04-16 13:44:18 +02:00
public const string AndroidAppProtocol = "androidapp://";
public const string iOSAppProtocol = "iosapp://";
public static string SyncOnRefreshKey = "syncOnRefresh";
[Auto Logout] Final review of feature (#932) * Initial commit of LockService name refactor (#831) * [Auto-Logout] Update Service layer logic (#835) * Initial commit of service logic update * Added default value for action * Updated ToggleTokensAsync conditional * Removed unused variables, updated action conditional * Initial commit: lockOption/lock refactor app layer (#840) * [Auto-Logout] Settings Refactor - Application Layer Part 2 (#844) * Initial commit of app layer part 2 * Updated biometrics position * Reverted resource name refactor * LockOptions refactor revert * Updated method casing :: Removed VaultTimeout prefix for timeouts * Fixed dupe string resource (#854) * Updated dependency to use VaultTimeoutService (#896) * [Auto Logout] Xamarin Forms in AutoFill flow (iOS) (#902) * fix typo in PINRequireMasterPasswordRestart (#900) * initial commit for xf usage in autofill * Fixed databinding for hint button * Updated Two Factor page launch - removed unused imports * First pass at broadcast/messenger implentation for autofill * setting theme in extension using theme manager * extension app resources * App resources from main app * fix ref to twoFactorPage * apply resources to page * load empty app for sytling in extension * move ios renderers to ios core * static ref to resources and GetResourceColor helper * fix method ref * move application.current.resources refs to helper * switch login page alerts to device action dialogs * run on main thread * showDialog with device action service * abstract action sheet to device action service * add support for yubikey * add yubikey iimages to extension * support close button action * add support to action extension * remove empty lines Co-authored-by: Jonas Kittner <54631600+theendlessriver13@users.noreply.github.com> Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com> * [Auto Logout] Update lock option to be default value (#929) * Initial commit - make lock action default * Removed extra whitespace Co-authored-by: Jonas Kittner <54631600+theendlessriver13@users.noreply.github.com> Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com> Co-authored-by: Kyle Spearrin <kspearrin@users.noreply.github.com>
2020-05-29 18:26:36 +02:00
public static string VaultTimeoutKey = "lockOption";
public static string VaultTimeoutActionKey = "vaultTimeoutAction";
2019-05-15 20:22:28 +02:00
public static string LastActiveKey = "lastActive";
2020-06-08 14:25:13 +02:00
public static string BiometricUnlockKey = "fingerprintUnlock";
2019-05-15 20:22:28 +02:00
public static string ProtectedPin = "protectedPin";
2019-04-08 22:04:41 +02:00
public static string PinProtectedKey = "pinProtectedKey";
2019-04-16 13:44:18 +02:00
public static string DefaultUriMatch = "defaultUriMatch";
2019-04-17 22:01:07 +02:00
public static string DisableAutoTotpCopyKey = "disableAutoTotpCopy";
2019-04-18 18:19:17 +02:00
public static string EnvironmentUrlsKey = "environmentUrls";
public static string LastFileCacheClearKey = "lastFileCacheClear";
2019-06-03 16:45:27 +02:00
public static string AutofillDisableSavePromptKey = "autofillDisableSavePrompt";
public static string AutofillBlacklistedUrisKey = "autofillBlacklistedUris";
public static string AutofillTileAdded = "autofillTileAdded";
2019-05-17 20:34:14 +02:00
public static string DisableFaviconKey = "disableFavicon";
2019-05-28 18:01:55 +02:00
public static string PushRegisteredTokenKey = "pushRegisteredToken";
public static string PushCurrentTokenKey = "pushCurrentToken";
public static string PushLastRegistrationDateKey = "pushLastRegistrationDate";
public static string PushInitialPromptShownKey = "pushInitialPromptShown";
2019-05-29 20:11:15 +02:00
public static string ThemeKey = "theme";
public static string ClearClipboardKey = "clearClipboard";
2019-05-30 20:13:02 +02:00
public static string LastBuildKey = "lastBuild";
2019-06-01 06:42:26 +02:00
public static string OldUserIdKey = "userId";
2019-06-04 05:00:48 +02:00
public static string AddSitePromptShownKey = "addSitePromptShown";
public static string ClearCiphersCacheKey = "clearCiphersCache";
public static string MigratedFromV1 = "migratedFromV1";
public static string MigratedFromV1AutofillPromptShown = "migratedV1AutofillPromptShown";
2019-06-05 05:39:58 +02:00
public static string TriedV1Resync = "triedV1Resync";
2019-07-11 15:30:25 +02:00
public static string EventCollectionKey = "eventCollection";
public static string PreviousPageKey = "previousPage";
2019-05-11 05:43:35 +02:00
public const int SelectFileRequestCode = 42;
public const int SelectFilePermissionRequestCode = 43;
public const int SaveFileRequestCode = 44;
2019-04-03 20:21:54 +02:00
}
}