Skip to content

Commit

Permalink
Fixed #3957
Browse files Browse the repository at this point in the history
  • Loading branch information
tidusjar committed Jan 5, 2021
1 parent fcc8774 commit 6dba4eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/Ombi/ClientApp/src/app/interfaces/IUser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export enum UserType {
LocalUser = 1,
PlexUser = 2,
EmbyUser = 3,
EmbyConnect = 4,
JellyfinUser = 5,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
<span *ngIf="u.userType === 1">Local User</span>
<span *ngIf="u.userType === 2">Plex 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>
</ng-container>

Expand Down
6 changes: 3 additions & 3 deletions src/Ombi/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Trace",
"System": "Trace",
"Microsoft": "Warning",
"Default": "Information",
"System": "Information",
"Microsoft": "Information",
"System.Net.Http.HttpClient.health-checks": "Information",
"HealthChecks": "Information"
}
Expand Down

0 comments on commit 6dba4eb

Please sign in to comment.