1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-10-26 08:55:23 +03:00

added custom logo name as configurable

This commit is contained in:
Adolfo Gómez García 2020-05-05 12:33:54 +02:00
parent aeb622cdc8
commit 3c8864cefc
2 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,7 @@
<mat-toolbar color="primary" class="uds-nav">
<button mat-button routerLink="/">
<img alt="Universal Desktop Services" [src]="api.staticURL('modern/img/udsicon.png')" class="udsicon"> UDS
<img alt="Universal Desktop Services" [src]="api.staticURL('modern/img/udsicon.png')" class="udsicon"> {{api.config.site_logo_name}}
</button>
<!-- This fills the remaining space of the current row -->

View File

@ -47,6 +47,7 @@ export interface UDSConfig {
readonly site_name: string;
readonly site_copyright_info: string;
readonly site_copyright_link: string;
readonly site_logo_name: string;
readonly messages: UDSMessages;
readonly urls: UDSUrls;
}