mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-28 10:32:34 -04:00
Want to Read List (#1392)
* Implemented a Want To Read list of series for all users, as a way to keep track of what you want to read. When canceling a bulk action, like Add to Reading list, the selected cards wont de-select. * Hooked up Remove from Want to Read * When making bulk selection, allow the user to click on anywhere on the card * Added no series messaging * Code cleanup
This commit is contained in:
@@ -22,7 +22,8 @@ public enum AppUserIncludes
|
||||
Bookmarks = 4,
|
||||
ReadingLists = 8,
|
||||
Ratings = 16,
|
||||
UserPreferences = 32
|
||||
UserPreferences = 32,
|
||||
WantToRead = 64
|
||||
}
|
||||
|
||||
public interface IUserRepository
|
||||
@@ -176,6 +177,11 @@ public class UserRepository : IUserRepository
|
||||
query = query.Include(u => u.UserPreferences);
|
||||
}
|
||||
|
||||
if (includeFlags.HasFlag(AppUserIncludes.WantToRead))
|
||||
{
|
||||
query = query.Include(u => u.WantToRead);
|
||||
}
|
||||
|
||||
|
||||
|
||||
return query;
|
||||
|
||||
Reference in New Issue
Block a user