multi-scrobbler/config/jellyfin.json.example
FoxxMD 0de2cc0922 feat(jellyfin)!: Refactor Jellyfin source to use Jellyfin API
* Implement new jellyfin source using JF typescript api client library for communication
  * Use either API Key or username/password
* Implement real-time scrobble monitoring
* Implement feature parity filters from old jellyfin source (users) and add devices filters
* Refactor documentation for new configuration with api and add migration steps for webhook users
* Add deprecation warning to jellyfin webhook source
2024-08-29 11:28:27 -04:00

19 lines
435 B
JSON

[
{
"name": "MyJellyfin",
"enable": true,
"clients": [],
"data": {
"url": "http://localhost:8096",
"user": "FoxxMD",
"apiKey": "c9fae8756fbf481ebd9c5bb56bd6540c",
"usersAllowed": ["FoxxMD","SomeOtherUser"],
"usersBlocked": ["AnotherUser"],
"devicesAllowed": ["firefox"],
"devicesBlocked": ["google-home"]
},
"options": {
"logFilterFailure": "debug"
}
}
]