Skip to content

Commit

Permalink
chore: temporary adjustment to license endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandernsilva committed Oct 3, 2023
1 parent 6dc7c2a commit 6b88258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/ee/server/api/licenses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ API.v1.addRoute(
return API.v1.unauthorized();
}

const license = License.getUnmodifiedLicenseAndModules();
const license = License.getLicense(); // TODO: temporary, remover after #30473 is merged
const licenses = license ? [license] : [];

return API.v1.success({ licenses });
Expand Down

0 comments on commit 6b88258

Please sign in to comment.