Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f4d1c3ef7ab46cb37f400ef7688dd328d5d1626e You should set ROOT_URL correctly, otherwise the web may not work correctly.

Add device query class

pull/6201/head
Patrick Barron 4 years ago
parent ab63a7745c
commit f4d1c3ef7a

@ -0,0 +1,25 @@
using System;
namespace Jellyfin.Data.Queries
{
/// <summary>
/// A query to retrieve devices.
/// </summary>
public class DeviceQuery : PaginatedQuery
{
/// <summary>
/// Gets or sets the user id of the device.
/// </summary>
public Guid? UserId { get; set; }
/// <summary>
/// Gets or sets the device id.
/// </summary>
public string? DeviceId { get; set; }
/// <summary>
/// Gets or sets the access token.
/// </summary>
public string? AccessToken { get; set; }
}
}
Loading…
Cancel
Save