#1456 Started on the User Importer

Also added the remember me button
This commit is contained in:
Jamie.Rees 2017-09-14 14:08:07 +01:00
commit 36d93d5a9d
21 changed files with 3685 additions and 376 deletions

View file

@ -1,5 +1,6 @@
using System.Threading.Tasks;
using Ombi.Api.Plex.Models;
using Ombi.Api.Plex.Models.Friends;
using Ombi.Api.Plex.Models.Server;
using Ombi.Api.Plex.Models.Status;
@ -16,5 +17,6 @@ namespace Ombi.Api.Plex
Task<PlexMetadata> GetMetadata(string authToken, string plexFullHost, int itemId);
Task<PlexMetadata> GetSeasons(string authToken, string plexFullHost, int ratingKey);
Task<PlexContainer> GetAllEpisodes(string authToken, string host, string section, int start, int retCount);
Task<PlexFriends> GetUsers(string authToken);
}
}