[Feature Request] Link to arr title from calendar #5423
Unanswered
tanookiben
asked this question in
Feature Requests
Replies: 1 comment
-
Sonarr already has Previous request with some more upvotes: #2502 I have a POC of this working for ical, sonarr, and radarr but it may need some more testing (and followups for lidarr/readarr). Readarr has an obvious |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Right now hovering over the show/movie/etc from the calendar widget will show the season/episode for Sonarr or nothing else for Radarr
It would be nice to make each entry a link to the resource in their respective apps
For Radarr this seems to be pretty straightforward, the current API call already returns a
titleSlug
field so I think the link can be constructed as$PROTOCOL://$HOST/movie/$TITLESLUG
For Sonarr this seems to be a little more difficult, the current API call returns a series ID and I think the only way to get the series slug is via the API: https://sonarr.tv/docs/api/#/Series/get_api_v3_series__id_. So probably has to be an API call to get the Series'
titleSlug
field and construct the URL accordingly as$PROTOCOL://$HOST/series/$TITLESLUG
Other
No response
Beta Was this translation helpful? Give feedback.
All reactions