Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions SW.Bitween.Api/Resources/Subscriptions/Get.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ public async Task<object> Handle(int key)
CategoryCode = subscriber.Category?.Code,
CategoryId = subscriber.CategoryId,
WorkGroupId = subscriber.WorkGroupId,
RetryPolicyId = subscriber.RetryPolicyId,
CustomRetryPolicy = subscriber.CustomRetryPolicy,
Schedules = subscriber.Schedules.Select(s => new ScheduleView
{
Backwards = s.Backwards,
Expand Down
4 changes: 3 additions & 1 deletion SW.Bitween.Api/Resources/Subscriptions/Search.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ join document in _dbContext.Set<Document>() on subscriber.DocumentId equals docu
WorkGroupId = subscriber.WorkGroupId,
CategoryDescription = subscriber.Category.Description,
CategoryCode = subscriber.Category.Code,

RetryPolicyId = subscriber.RetryPolicyId,
CustomRetryPolicy = subscriber.CustomRetryPolicy,

};

query = query.AsNoTracking().AsQueryable();
Expand Down
Loading