mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
more sync movement
This commit is contained in:
@@ -239,8 +239,11 @@ namespace MediaBrowser.Api.Session
|
||||
[ApiMember(Name = "SupportsContentUploading", Description = "Determines whether camera upload is supported.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "POST")]
|
||||
public bool SupportsContentUploading { get; set; }
|
||||
|
||||
[ApiMember(Name = "SupportsDeviceId", Description = "Determines whether the device supports a unique identifier.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "POST")]
|
||||
public bool SupportsDeviceId { get; set; }
|
||||
[ApiMember(Name = "SupportsSync", Description = "Determines whether sync is supported.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "POST")]
|
||||
public bool SupportsSync { get; set; }
|
||||
|
||||
[ApiMember(Name = "SupportsUniqueIdentifier", Description = "Determines whether the device supports a unique identifier.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "POST")]
|
||||
public bool SupportsUniqueIdentifier { get; set; }
|
||||
}
|
||||
|
||||
[Route("/Sessions/Logout", "POST", Summary = "Reports that a session has ended")]
|
||||
@@ -521,7 +524,9 @@ namespace MediaBrowser.Api.Session
|
||||
|
||||
SupportsContentUploading = request.SupportsContentUploading,
|
||||
|
||||
SupportsDeviceId = request.SupportsDeviceId
|
||||
SupportsSync = request.SupportsSync,
|
||||
|
||||
SupportsUniqueIdentifier = request.SupportsUniqueIdentifier
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user