Added tag and creator tests.
This commit is contained in:
@@ -42,8 +42,8 @@ public class CreatorSearchProvider(AppDbContext context) : SearchProvider<Creato
|
||||
Expression<Func<CreatorSearchItem, object>> selector = field switch
|
||||
{
|
||||
CreatorSortField.VoiceWorkCount => x => x.VoiceWorkCount,
|
||||
CreatorSortField.Favorite => x => x.Favorite,
|
||||
CreatorSortField.Blacklisted => x => x.Blacklisted,
|
||||
CreatorSortField.Favorite => x => !x.Favorite,
|
||||
CreatorSortField.Blacklisted => x => !x.Blacklisted,
|
||||
_ => x => x.Name
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user