Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
add description field for collector_item create (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
rvema authored May 11, 2021
1 parent 66731ce commit b83ff22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>api</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<version>3.4.18-SNAPSHOT</version>
<version>3.4.19-SNAPSHOT</version>
<description>Hygieia Rest API Layer</description>
<url>https://github.com/Hygieia/api</url>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public CollectorItem toCollectorItem() {
CollectorItem item = new CollectorItem();
item.setCollectorId(collectorId);
item.setEnabled(true);
item.setDescription(description);
item.getOptions().putAll(options);
return item;
}
Expand Down

0 comments on commit b83ff22

Please sign in to comment.