Close all docs on logout

This commit is contained in:
shamoon 2023-04-28 07:07:59 -07:00
parent d2a8076596
commit 12d8bcad6e
2 changed files with 5 additions and 1 deletions

View File

@ -44,7 +44,7 @@
<use xlink:href="assets/bootstrap-icons.svg#gear"/>
</svg><ng-container i18n>Settings</ng-container>
</a>
<a ngbDropdownItem class="nav-link" href="accounts/logout/">
<a ngbDropdownItem class="nav-link" href="accounts/logout/" (click)="onLogout()">
<svg class="sidebaricon me-2" fill="currentColor">
<use xlink:href="assets/bootstrap-icons.svg#door-open"/>
</svg><ng-container i18n>Logout</ng-container>

View File

@ -243,4 +243,8 @@ export class AppFrameComponent
this.checkForUpdates()
}
}
onLogout() {
this.openDocumentsService.closeAll()
}
}