mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-27 03:05:10 +02:00
feat: tmdb cache, plugin support changes, series page, episode page, movie page streaming updated
This commit is contained in:
@@ -5,6 +5,7 @@ import {
|
||||
PrimaryGeneratedColumn,
|
||||
UpdateDateColumn,
|
||||
} from 'typeorm';
|
||||
import { TmdbMovieFull } from './tmdb/tmdb.dto';
|
||||
|
||||
@Entity()
|
||||
export class Movie {
|
||||
@@ -17,7 +18,7 @@ export class Movie {
|
||||
tmdbId: string;
|
||||
|
||||
@Column('json')
|
||||
tmdbMovie: any
|
||||
tmdbMovie: TmdbMovieFull;
|
||||
|
||||
@UpdateDateColumn()
|
||||
updatedAt: Date;
|
||||
|
||||
Reference in New Issue
Block a user