prep for release

This commit is contained in:
Moritz Jung 2024-06-02 20:05:51 +02:00
parent fac8abf701
commit bf33e7567c
8 changed files with 113 additions and 6026 deletions

View file

@ -12,7 +12,6 @@ export class MovieModel extends MediaTypeModel {
onlineRating: number;
actors: string[];
image: string;
plot: string;
released: boolean;
streamingServices: string[];
@ -36,7 +35,6 @@ export class MovieModel extends MediaTypeModel {
this.onlineRating = undefined;
this.actors = undefined;
this.image = undefined;
this.plot = undefined;
this.released = undefined;
this.streamingServices = undefined;

View file

@ -21,7 +21,6 @@ export class SeriesModel extends MediaTypeModel {
onlineRating: number;
actors: string[];
image: string;
plot: string;
released: boolean;
streamingServices: string[];
@ -47,7 +46,6 @@ export class SeriesModel extends MediaTypeModel {
this.onlineRating = undefined;
this.actors = undefined;
this.image = undefined;
this.plot = undefined;
this.released = undefined;
this.streamingServices = undefined;