-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 fix: retrieval of worklogs per user, issue and date range was missi…
…ng the user predicate
- Loading branch information
Peter Hraško
committed
Jan 29, 2024
1 parent
4b5055e
commit 91824e2
Showing
2 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
#pragma warning disable SA1313 | ||
namespace jwl.jira.api.rest.request; | ||
|
||
public class JiraAddWorklogByIssueKey | ||
public record JiraAddWorklogByIssueKey(string Started, int TimeSpentSeconds, string? Comment) | ||
{ | ||
public string? Started { get; init; } | ||
public int? TimeSpentSeconds { get; init; } | ||
public string? Comment { get; init; } | ||
} |