mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
feat: add genre/studio/network view to Discover results (#1067)
* feat: add genres view to movie/series Discover results * feat: add studio/network view to movie/series Discover results * fix: remove with_release_type filter, since it is removing valid/desired results
This commit is contained in:
9
src/pages/discover/movies/genre/[genreId]/index.tsx
Normal file
9
src/pages/discover/movies/genre/[genreId]/index.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
import { NextPage } from 'next';
|
||||
import DiscoverMovies from '../../../../../components/Discover/DiscoverMovies';
|
||||
|
||||
const DiscoverMoviesGenrePage: NextPage = () => {
|
||||
return <DiscoverMovies />;
|
||||
};
|
||||
|
||||
export default DiscoverMoviesGenrePage;
|
||||
9
src/pages/discover/movies/studio/[studioId]/index.tsx
Normal file
9
src/pages/discover/movies/studio/[studioId]/index.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
import { NextPage } from 'next';
|
||||
import DiscoverMovies from '../../../../../components/Discover/DiscoverMovies';
|
||||
|
||||
const DiscoverMoviesStudioPage: NextPage = () => {
|
||||
return <DiscoverMovies />;
|
||||
};
|
||||
|
||||
export default DiscoverMoviesStudioPage;
|
||||
9
src/pages/discover/tv/genre/[genreId]/index.tsx
Normal file
9
src/pages/discover/tv/genre/[genreId]/index.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
import { NextPage } from 'next';
|
||||
import DiscoverTv from '../../../../../components/Discover/DiscoverTv';
|
||||
|
||||
const DiscoverTvGenrePage: NextPage = () => {
|
||||
return <DiscoverTv />;
|
||||
};
|
||||
|
||||
export default DiscoverTvGenrePage;
|
||||
9
src/pages/discover/tv/network/[networkId]/index.tsx
Normal file
9
src/pages/discover/tv/network/[networkId]/index.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
import { NextPage } from 'next';
|
||||
import DiscoverTv from '../../../../../components/Discover/DiscoverTv';
|
||||
|
||||
const DiscoverTvNetworkPage: NextPage = () => {
|
||||
return <DiscoverTv />;
|
||||
};
|
||||
|
||||
export default DiscoverTvNetworkPage;
|
||||
Reference in New Issue
Block a user