Refactor browserID handling. Force retaining browserID on logout

This commit is contained in:
2022-07-23 00:33:00 +00:00
parent f4e39d644e
commit d5edd2452a
4 changed files with 101 additions and 44 deletions

View File

@@ -15,6 +15,7 @@ import { PopupMixin } from "./popups";
import pjson from "../../package.json";
import "./popup-card";
import { AutoSettingsMixin } from "./frontend-settings";
import { BrowserIDMixin } from "./browserID";
/*
TODO:
@@ -72,7 +73,11 @@ export class BrowserMod extends ServicesMixin(
MediaPlayerMixin(
ScreenSaverMixin(
AutoSettingsMixin(
FullyMixin(RequireInteractMixin(ConnectionMixin(EventTarget)))
FullyMixin(
RequireInteractMixin(
ConnectionMixin(BrowserIDMixin(EventTarget))
)
)
)
)
)