-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(API): allow nullable value for job's due_date (#534)
* Make due_date argument nullable * Make due_date argument nullable in show and update actions * Add updated compiled.json file * Testing Java CI build with dependency added to pom file * Testing Java CI build with update made to ApiClient.mustache * Added nullable dependency in gradle * Added specs * Corrected Assertion * Corrected Assertion * Corrected Assertion * Corrected Assertion * Clean up gitignore
- Loading branch information
1 parent
4af2c66
commit 38b51b5
Showing
7 changed files
with
74 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,4 +65,4 @@ doc/*.js | |
tmp/ | ||
node_modules/ | ||
.DS_Store | ||
clients/cli/README.md | ||
clients/cli/README.md |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ job: | |
due_date: | ||
type: string | ||
format: date-time | ||
nullable: true | ||
state: | ||
type: string | ||
ticket_url: | ||
|