
* ImageService had a stream reset before writting out to array. Added logging statment for updating series metadata. Removed ConcurencyCheck due to bad update issue for CollectionTag. * Added a new screen which lets you quickly see all your bookmarks for a given user. * Built user bookmark page in user settings. Moved user settings to it's own lazy loaded module. Removed unneded debouncing from downloader and just used throttleTime instead. * Removed a not-yet implemented tab from series modal * Fixed a bug in clear bookmarks and adjusted icons within anchors to have proper styling
7 lines
125 B
C#
7 lines
125 B
C#
namespace API.DTOs
|
|
{
|
|
public class RemoveBookmarkForSeriesDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
}
|
|
}
|