Skip to content

Commit

Permalink
Removed json ignore from certificates and internal plugin type from d…
Browse files Browse the repository at this point in the history
…efault job
  • Loading branch information
carlosjepard committed Jul 8, 2024
1 parent eb6a640 commit b74e196
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public class PluginInfo implements Serializable {
private List<PluginParameter> parameters = new ArrayList<>();
private Set<String> objectClasses = new HashSet<>();
private Boolean isVerified = false;
@JsonIgnore
private CertificateInfo certificateInfo = new CertificateInfo();
private Boolean isInstalled = false;
private Boolean hasLicenseFile = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ public CreateDefaultJob() {
initWidget(uiBinder.createAndBindUi(this));

Services services = new Services("Retrieve plugin information", "get");
pluginTypes.remove(PluginType.INTERNAL);
services.configurationsResource(s -> s.retrievePluginsInfo(pluginTypes))
.whenComplete((pluginInfoList, throwable) -> {
if (throwable == null) {
Expand Down

0 comments on commit b74e196

Please sign in to comment.