push messages are sent upon user ids

This commit is contained in:
Paul Schneider 2019-05-24 20:17:24 +01:00
commit 44224e955f
10 changed files with 130 additions and 91 deletions

View file

@ -21,7 +21,7 @@ namespace Yavsc.Helpers
.Include(p=>p.Activity)
.Include(p=>p.Performer)
.Include(p=>p.Performer.Posts)
.Include(p=>p.Performer.DeviceDeclarations)
.Include(p=>p.Performer.DeviceDeclaration)
.Where(p => p.Active && p.Activity.Any(u=>u.DoesCode==actCode)).OrderBy( x => x.Rate )
.ToArray();
List<PerformerProfileViewModel> result = new List<PerformerProfileViewModel> ();