From 2b07e6aaf82b32a300273e91b808b57ea2292c20 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 26 Jul 2013 21:15:55 -0400 Subject: separate display preferences per client --- MediaBrowser.Model/ApiClient/IApiClient.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs') diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index c22ca74e7..d9a7b9bc4 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -477,8 +477,10 @@ namespace MediaBrowser.Model.ApiClient /// Gets the display preferences. /// /// The id. + /// The user id. + /// The client. /// Task{BaseItemDto}. - Task GetDisplayPreferencesAsync(string id); + Task GetDisplayPreferencesAsync(string id, string userId, string client); /// /// Updates display preferences for a user @@ -487,7 +489,7 @@ namespace MediaBrowser.Model.ApiClient /// The display preferences. /// Task{DisplayPreferences}. /// userId - Task UpdateDisplayPreferencesAsync(DisplayPreferences displayPreferences); + Task UpdateDisplayPreferencesAsync(DisplayPreferences displayPreferences, string userId, string client); /// /// Posts a set of data to a url, and deserializes the return stream into T -- cgit v1.2.3