Skip to content

Commit

Permalink
feat: add genres view to movie/series Discover results
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCatLady committed Mar 2, 2021
1 parent 1d45f42 commit a22d207
Show file tree
Hide file tree
Showing 16 changed files with 261 additions and 78 deletions.
96 changes: 77 additions & 19 deletions overseerr-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3223,6 +3223,11 @@ paths:
schema:
type: string
example: en
- in: query
name: genre
schema:
type: number
example: 10751
responses:
'200':
description: Results
Expand Down Expand Up @@ -3301,6 +3306,11 @@ paths:
schema:
type: string
example: en
- in: query
name: genre
schema:
type: number
example: 18
responses:
'200':
description: Results
Expand Down Expand Up @@ -4326,14 +4336,16 @@ paths:
content:
application/json:
schema:
type: object
properties:
iso_3166_1:
type: string
example: US
english_name:
type: string
example: United States of America
type: array
items:
type: object
properties:
iso_3166_1:
type: string
example: US
english_name:
type: string
example: United States of America
/languages:
get:
summary: Languages supported by TMDb
Expand All @@ -4346,17 +4358,63 @@ paths:
content:
application/json:
schema:
type: object
properties:
iso_639_1:
type: string
example: en
english_name:
type: string
example: English
name:
type: string
example: English
type: array
items:
type: object
properties:
iso_639_1:
type: string
example: en
english_name:
type: string
example: English
name:
type: string
example: English
/genres/movie:
get:
summary: Get list of official TMDb movie genres
description: Returns a list of genres in a JSON array.
tags:
- tmdb
responses:
'200':
description: Results
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: number
example: 10751
name:
type: string
example: Family
/genres/tv:
get:
summary: Get list of official TMDb movie genres
description: Returns a list of genres in a JSON array.
tags:
- tmdb
responses:
'200':
description: Results
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: number
example: 18
name:
type: string
example: Drama

security:
- cookieAuth: []
Expand Down
Loading

0 comments on commit a22d207

Please sign in to comment.