Fixed an issue where we were adding the read only permission when creating the admin
This commit is contained in:
tidusjar 2016-12-09 23:38:01 +00:00
parent 9e6854458a
commit 6ea3907923
6 changed files with 313 additions and 27 deletions

View file

@ -44,6 +44,7 @@ namespace PlexRequests.Api.Interfaces
PlexSearch GetAllEpisodes(string authToken, Uri host, string section, int startPage, int returnCount);
PlexServer GetServer(string authToken);
PlexSeasonMetadata GetSeasons(string authToken, Uri plexFullHost, string ratingKey);
RecentlyAddedModel RecentlyAdded(string authToken, Uri plexFullHost, string sectionId);
RecentlyAddedModelOld RecentlyAddedOld(string authToken, Uri plexFullHost, string sectionId);
PlexRecentlyAddedModel RecentlyAdded(string authToken, Uri plexFullHost, string sectionId);
}
}