mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-23 01:05:13 +02:00
Implemented tv search
This commit is contained in:
@@ -278,6 +278,15 @@ export const getTmdbMovieSimilar = (tmdbId: number) =>
|
||||
}
|
||||
}).then((res) => res.data?.results || []);
|
||||
|
||||
export const searchTmdbTitles = (query: string) =>
|
||||
TmdbApiOpen.get('/3/search/multi', {
|
||||
params: {
|
||||
query: {
|
||||
query
|
||||
}
|
||||
}
|
||||
}).then((res) => res.data?.results || []);
|
||||
|
||||
// Deprecated hereon forward
|
||||
|
||||
/** @deprecated */
|
||||
|
||||
Reference in New Issue
Block a user