Skip to content

Commit

Permalink
feat(plugins): Add plugin description and provider to PluginTrigger (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsie committed Jun 22, 2020
1 parent 711c21a commit c848afe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ data class PluginTrigger
private var isDryRun: Boolean = false,
private var isStrategy: Boolean = false,
val pluginId: String,
val description: String,
val provider: String,
val version: String,
val releaseDate: String,
val requires: List<Map<String, String>>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ class TriggerDeserializer :
get("dryRun")?.booleanValue() == true,
get("strategy")?.booleanValue() == true,
get("pluginId").textValue(),
get("description").textValue(),
get("provider").textValue(),
get("version").textValue(),
get("releaseDate").textValue(),
get("requires").listValue(parser),
Expand Down

0 comments on commit c848afe

Please sign in to comment.