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

Add navigation property to device entity

pull/6201/head
Patrick Barron 4 years ago
parent 98e19c9fd3
commit f47fe308b1

@ -26,6 +26,9 @@ namespace Jellyfin.Data.Entities.Security
DateCreated = DateTime.UtcNow;
DateLastActivity = DateCreated;
// Non-nullable for EF Core, as this is a required relationship.
User = null!;
}
public int Id { get; private set; }
@ -77,5 +80,10 @@ namespace Jellyfin.Data.Entities.Security
/// Gets or sets the date of last activity.
/// </summary>
public DateTime DateLastActivity { get; set; }
/// <summary>
/// Gets the user.
/// </summary>
public User User { get; private set; }
}
}

Loading…
Cancel
Save