Remove Jackett api key from widget

The Jackett widget was using the api key in api requests however this
is not necessary as the endpoint we use doesn't require it. If Jackett
authentication is enabled then the password field should be used
instead.
pull/3125/head
technowhizz 2 months ago
parent b97d625c93
commit d693f01e16
No known key found for this signature in database

@ -13,6 +13,5 @@ Allowed fields: `["configured", "errored"]`.
widget:
type: jackett
url: http://jackett.host.or.ip
key: jackettapikey
password: JackettAdminPassword
```

@ -1,7 +1,7 @@
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
const widget = {
api: "{url}/api/v2.0/{endpoint}?apikey={key}&configured=true",
api: "{url}/api/v2.0/{endpoint}?configured=true",
proxyHandler: credentialedProxyHandler,
loginURL: "{url}/UI/Dashboard",

Loading…
Cancel
Save