1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-22 04:14:04 +00:00
Files
browser/libs/common/src/enums/push-notification-logout-reason.enum.ts
Maciej Zieniuk 20ddf3b6fd [PM-26649] Prevent log-out when changing KDF settings (except old clients) (#16775)
* Prevent log-out when changing KDF settings (except old clients)

* test coverage

* logout reason enum
2025-10-21 11:26:48 +02:00

7 lines
233 B
TypeScript

export const PushNotificationLogOutReasonType = Object.freeze({
KdfChange: 0,
} as const);
export type PushNotificationLogOutReasonType =
(typeof PushNotificationLogOutReasonType)[keyof typeof PushNotificationLogOutReasonType];