feat(all): add initial Jellyfin/Emby support

This commit is contained in:
Aiden Vigue
2021-02-15 05:13:19 -05:00
parent 9ce88abcc8
commit a6ec2d5220
31 changed files with 2194 additions and 44 deletions

View File

@@ -47,6 +47,9 @@ export class User {
@Column({ nullable: true })
public plexUsername: string;
@Column({ nullable: true })
public jellyfinUsername: string;
@Column({ nullable: true })
public username?: string;
@@ -65,6 +68,12 @@ export class User {
@Column({ nullable: true, select: false })
public plexId?: number;
@Column({ nullable: true, select: false })
public jellyfinId?: string;
@Column({ nullable: true, select: false })
public jellyfinAuthToken?: string;
@Column({ nullable: true, select: false })
public plexToken?: string;