diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index e4b3f5acd..8db00723d 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -43,8 +43,8 @@ jobs: - name: Run Docker Image run: nohup docker run --rm -p 5000:5000 ombi & - # - name: Run Wiremock Plex - # run: nohup docker run -it --rm -p 8080:8080 --name wiremock wiremock/wiremock:2.35.0 + - name: Run Wiremock Plex + run: nohup docker run -it --rm -p 32400:8080 --name wiremock wiremock/wiremock:2.35.0 - name: Sleep for server to start run: sleep 20 diff --git a/src/Ombi/ClientApp/src/app/settings/plex/components/form-field/plex-form-field.component.ts b/src/Ombi/ClientApp/src/app/settings/plex/components/form-field/plex-form-field.component.ts index 0e2f518c5..57b1ec358 100644 --- a/src/Ombi/ClientApp/src/app/settings/plex/components/form-field/plex-form-field.component.ts +++ b/src/Ombi/ClientApp/src/app/settings/plex/components/form-field/plex-form-field.component.ts @@ -21,7 +21,7 @@ import { Component, EventEmitter, Input, Output } from "@angular/core"; - + @@ -40,6 +40,7 @@ export class PlexFormFieldComponent { @Input() public id: string; @Input() public placeholder: string; @Input() public type: "input" | "checkbox" | "password" = "input" + @Input() public disabled = false; public change(newValue: string) { this.value = newValue; diff --git a/src/Ombi/ClientApp/src/app/settings/plex/plex.component.html b/src/Ombi/ClientApp/src/app/settings/plex/plex.component.html index 8bd1629e3..783650dd3 100644 --- a/src/Ombi/ClientApp/src/app/settings/plex/plex.component.html +++ b/src/Ombi/ClientApp/src/app/settings/plex/plex.component.html @@ -14,12 +14,17 @@ When a Plex User adds something to their watchlist in Plex, it will turn up in Ombi as a Request if enabled. This only applies to users that are logging in with their Plex Account
Request limits if set are all still applied
- - + + + + If enabled then watchlist requests for TV Shows will request the whole show. If not enabled it will only request the latest season. + + +
- +

Servers