mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
Creates a new `DeviceManagementComponent` that fetches devices and formats them before handing them off to a view component for display. View components: - `DeviceManagementTableComponent` - displays on medium to large screens - `DeviceManagementItemGroupComponent` - displays on small screens Feature flag: `PM14938_BrowserExtensionLoginApproval`
16 lines
418 B
TypeScript
16 lines
418 B
TypeScript
import { DeviceManagementComponentServiceAbstraction } from "./device-management-component.service.abstraction";
|
|
|
|
/**
|
|
* Default implementation of the device management component service
|
|
*/
|
|
export class DefaultDeviceManagementComponentService
|
|
implements DeviceManagementComponentServiceAbstraction
|
|
{
|
|
/**
|
|
* Show header information in web client
|
|
*/
|
|
showHeaderInformation(): boolean {
|
|
return true;
|
|
}
|
|
}
|