Skip to content

Commit

Permalink
Merge pull request #67 from JanssenProject/issue#65
Browse files Browse the repository at this point in the history
feat: add endpoint in admin-ui plugin to get license Details #65
  • Loading branch information
duttarnab authored Sep 15, 2021
2 parents c2b8633 + 38e5fe4 commit bfbdd19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public LicenseResponse getLicenseDetails() {
licenseResponse.setCustomerEmail(activeLicense.getData().getCustomer().getEmail());
licenseResponse.setCustomerFirstName(activeLicense.getData().getCustomer().getFirstName());
licenseResponse.setCustomerLastName(activeLicense.getData().getCustomer().getLastName());
licenseResponse.setLicenseActive(activeLicense.getData().isExpired());
licenseResponse.setLicenseActive(!activeLicense.getData().isExpired());
return licenseResponse;
}
} catch (LicenseSpringException e) {
Expand Down

0 comments on commit bfbdd19

Please sign in to comment.