aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Devices
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2021-05-20 20:39:22 -0400
committerPatrick Barron <barronpm@gmail.com>2021-05-20 20:39:22 -0400
commite1f70860778687703fcc0e950fb1496afa22775e (patch)
tree1e9fa365f937586442ce0e8184d3b3c5c8fbac60 /MediaBrowser.Controller/Devices
parenta225f3479600b511b3a53cfba6d59f6bc3210821 (diff)
Remove unnecessary query class
Diffstat (limited to 'MediaBrowser.Controller/Devices')
-rw-r--r--MediaBrowser.Controller/Devices/IDeviceManager.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Devices/IDeviceManager.cs b/MediaBrowser.Controller/Devices/IDeviceManager.cs
index 26afd9394..28612cea3 100644
--- a/MediaBrowser.Controller/Devices/IDeviceManager.cs
+++ b/MediaBrowser.Controller/Devices/IDeviceManager.cs
@@ -41,9 +41,10 @@ namespace MediaBrowser.Controller.Devices
/// <summary>
/// Gets the devices.
/// </summary>
- /// <param name="query">The query.</param>
+ /// <param name="userId">The user's id, or <c>null</c>.</param>
+ /// <param name="supportsSync">A value indicating whether the device supports sync, or <c>null</c>.</param>
/// <returns>IEnumerable&lt;DeviceInfo&gt;.</returns>
- Task<QueryResult<DeviceInfo>> GetDevices(DeviceQuery query);
+ Task<QueryResult<DeviceInfo>> GetDevicesForUser(Guid? userId, bool? supportsSync);
/// <summary>
/// Determines whether this instance [can access device] the specified user identifier.