This commit is contained in:
tidusjar 2021-01-05 08:13:37 +00:00
commit 6dba4eb0a4
3 changed files with 6 additions and 4 deletions

View file

@ -53,6 +53,7 @@ export enum UserType {
LocalUser = 1, LocalUser = 1,
PlexUser = 2, PlexUser = 2,
EmbyUser = 3, EmbyUser = 3,
EmbyConnect = 4,
JellyfinUser = 5, JellyfinUser = 5,
} }

View file

@ -88,7 +88,8 @@
<span *ngIf="u.userType === 1">Local User</span> <span *ngIf="u.userType === 1">Local User</span>
<span *ngIf="u.userType === 2">Plex User</span> <span *ngIf="u.userType === 2">Plex User</span>
<span *ngIf="u.userType === 3">Emby User</span> <span *ngIf="u.userType === 3">Emby User</span>
<span *ngIf="u.userType === 4">Jellyfin User</span> <span *ngIf="u.userType === 4">Emby Connect User</span>
<span *ngIf="u.userType === 5">Jellyfin User</span>
</td> </td>
</ng-container> </ng-container>

View file

@ -2,9 +2,9 @@
"Logging": { "Logging": {
"IncludeScopes": false, "IncludeScopes": false,
"LogLevel": { "LogLevel": {
"Default": "Trace", "Default": "Information",
"System": "Trace", "System": "Information",
"Microsoft": "Warning", "Microsoft": "Information",
"System.Net.Http.HttpClient.health-checks": "Information", "System.Net.Http.HttpClient.health-checks": "Information",
"HealthChecks": "Information" "HealthChecks": "Information"
} }