mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-11 17:55:33 +00:00
add christmas trakt list
This commit is contained in:
parent
562d1fdd1c
commit
d527446eb4
1 changed files with 9 additions and 3 deletions
|
|
@ -319,6 +319,7 @@ export const getNeverHeardMovies = () => fetchFromTrakt("/never");
|
|||
export const getLGBTQContent = () => fetchFromTrakt("/LGBTQ");
|
||||
export const getMindfuckMovies = () => fetchFromTrakt("/mindfuck");
|
||||
export const getTrueStoryMovies = () => fetchFromTrakt("/truestory");
|
||||
export const getChristmasMovies = () => fetchFromTrakt("/christmas");
|
||||
export const getHalloweenMovies = () => fetchFromTrakt("/halloween");
|
||||
// export const getGreatestTVShows = () => fetchFromTrakt("/greatesttv"); // We only have movies set up. TODO add more tv routes for curated lists so we can have a new page.
|
||||
|
||||
|
|
@ -326,9 +327,9 @@ export const getHalloweenMovies = () => fetchFromTrakt("/halloween");
|
|||
export const getCuratedMovieLists = async (): Promise<CuratedMovieList[]> => {
|
||||
const listConfigs = [
|
||||
{
|
||||
name: "Halloween Movies",
|
||||
slug: "halloween",
|
||||
endpoint: "/halloween",
|
||||
name: "Top Rated Christmas Movies",
|
||||
slug: "christmas",
|
||||
endpoint: "/christmas",
|
||||
},
|
||||
{
|
||||
name: "Letterboxd Top 250 Narrative Feature Films",
|
||||
|
|
@ -360,6 +361,11 @@ export const getCuratedMovieLists = async (): Promise<CuratedMovieList[]> => {
|
|||
slug: "truestory",
|
||||
endpoint: "/truestory",
|
||||
},
|
||||
{
|
||||
name: "Halloween Movies",
|
||||
slug: "halloween",
|
||||
endpoint: "/halloween",
|
||||
},
|
||||
// {
|
||||
// name: "Rolling Stone's 100 Greatest TV Shows",
|
||||
// slug: "greatesttv",
|
||||
|
|
|
|||
Loading…
Reference in a new issue