Removed movie and show in replacement with a common media.js and tmdb and plex that extend this media class.
This commit is contained in:
@@ -1,21 +0,0 @@
|
|||||||
class Movie {
|
|
||||||
constructor(title, year, type) {
|
|
||||||
this.id = undefined;
|
|
||||||
this.title = title;
|
|
||||||
this.year = year;
|
|
||||||
this.type = type;
|
|
||||||
this.release_date = undefined;
|
|
||||||
this.summary = undefined;
|
|
||||||
this.rating = undefined;
|
|
||||||
this.poster_path = undefined;
|
|
||||||
this.background = undefined;
|
|
||||||
this.genre = undefined;
|
|
||||||
this.date_added = undefined;
|
|
||||||
|
|
||||||
this.mediaInfo = undefined;
|
|
||||||
|
|
||||||
this.matchedInPlex = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = Movie;
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
class Movie {
|
|
||||||
constructor(title, year, type) {
|
|
||||||
this.id = undefined;
|
|
||||||
this.title = title;
|
|
||||||
this.year = year;
|
|
||||||
this.type = type;
|
|
||||||
this.release_date = undefined;
|
|
||||||
this.summary = undefined;
|
|
||||||
this.rating = undefined;
|
|
||||||
this.poster = undefined;
|
|
||||||
this.background = undefined;
|
|
||||||
this.genre = undefined;
|
|
||||||
this.added = undefined;
|
|
||||||
|
|
||||||
this.seasons = undefined;
|
|
||||||
this.episodes = undefined;
|
|
||||||
|
|
||||||
this.matchedInPlex = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = Movie;
|
|
||||||
Reference in New Issue
Block a user