Skip to content

Commit

Permalink
Update FilesReadyForReview model (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpnu authored May 28, 2024
1 parent 06584d3 commit e06ce67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ public class FilesReadyForReviewRequest
{
public string SubId { get; set; } = string.Empty;
public List<string> Files { get; set; } = new();
public string TesId { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
}
3 changes: 2 additions & 1 deletion app/HutchAgent/Services/ControllerApiService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ await request
new FilesReadyForReviewRequest()
{
SubId = jobId,
Files = files
Files = files,
TesId = jobId
});
// TODO attempt refreshing if token rejected?
}
Expand Down

0 comments on commit e06ce67

Please sign in to comment.