-
-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(watchlist): Add media to watchlist #374
Conversation
feat(add watchlist): adding missing functionality from overserr
Wait watchlist was missing? 🤔 |
let media = await mediaRepository.findOne({ | ||
where: { | ||
tmdbId: watchlistRequest.tmdbId, | ||
mediaType: watchlistRequest.mediaType, | ||
}, | ||
}); |
Check failure
Code scanning / CodeQL
NoSQL database query built from user-controlled sources (experimental)
server/routes/watchlist.ts
Outdated
logger.warn('Something wrong with data watchlist', { | ||
...req.body, | ||
label: 'Watchlist', | ||
}); |
Check failure
Code scanning / CodeQL
Log injection
Well it's not missing it's not available for Jellyfin users. I want to bookmark some media for future downloads. In plex its called watchchlist. So I decided to add watchlist functionality to jellyseerr. |
Wait how would watchlist work for jellyfin users? Won't they need a plex server? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
🎉 This PR is included in version 1.6.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
How does one view the items added to the watchlist? I use Jellyfin, which I know doesn't have a watchlist functionality built in... |
They should add a watchlist menu in jellyseer, otherwise this is confusing for jellyfin users |
you can now press |
@all-contributors please add @yalagin for code |
I've put up a pull request to add @yalagin! 🎉 |
feat(add watchlist): adding missing functionality from Overseerr
Description
This issue aims to add watchlist functionality to Jellyseerr, addressing its current absence. Watchlists allow users to create and manage personalized collections of movies, TV shows, and other media. By integrating this missing feature into Jellyseerr's list view, users can easily add, remove, and organize their preferred content. The addition of watchlists will enhance the user experience, providing a convenient way to track and discover new media within Jellyseerr.
Screenshot (if UI-related)
To-Dos