mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
* feat(notification-processing): [PM-19877] System Notification Implementation - Minor changes to popup logic and removed content in login component. * docs(notification-processing): [PM-19877] System Notification Implementation - Added more docs. * docs(notification-processing): [PM-19877] System Notification Implementation - Added markdown document. * fix(notification-processing): [PM-19877] System Notification Implementation - Updated condition for if notification is supported. * fix(notification-processing): [PM-19877] System Notification Implementation - Updated services module with correct platform utils service.
16 lines
475 B
TypeScript
16 lines
475 B
TypeScript
/**
|
|
* The preferred push technology of the server.
|
|
*/
|
|
// FIXME: update to use a const object instead of a typescript enum
|
|
// eslint-disable-next-line @bitwarden/platform/no-enums
|
|
export enum PushTechnology {
|
|
/**
|
|
* Indicates that we should use SignalR over web sockets to receive push server notifications from the server.
|
|
*/
|
|
SignalR = 0,
|
|
/**
|
|
* Indicates that we should use WebPush to receive push server notifications from the server.
|
|
*/
|
|
WebPush = 1,
|
|
}
|