Skip to content

Commit

Permalink
Merge pull request #201 from keritaf/fix/project-custom-fields-update
Browse files Browse the repository at this point in the history
Write custom fields for project
  • Loading branch information
alexeyOnGitHub committed Jul 6, 2015
2 parents a6b21ec + c87f576 commit e356a7f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ public static void writeProject(Project project, final JSONWriter writer)
JsonOutput.addIfNotNull(writer, "homepage", project.getHomepage());
addIfNotNullFull(writer, "created_on", project.getCreatedOn());
addIfNotNullFull(writer, "updated_on", project.getUpdatedOn());
writeCustomFields(writer, project.getCustomFields());
JsonOutput.addIfNotNull(writer, "parent_id", project.getParentId());
JsonOutput.addIfNotNull(writer, "is_public", project.getProjectPublic());
JsonOutput.addArrayIfNotNull(writer, "trackers", project.getTrackers(),
Expand Down

0 comments on commit e356a7f

Please sign in to comment.