Skip to content

Commit

Permalink
Adds admin users
Browse files Browse the repository at this point in the history
  • Loading branch information
andyjoyous committed Mar 25, 2024
1 parent 1b8fbcc commit 49fb8d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/decorators/registerController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export const createLicenseMiddleware =

const licenseService = Container.get(License);

const hasAllFeatures = features.every((feature) => licenseService.isFeatureEnabled(feature));
// const hasAllFeatures = features.every((feature) => licenseService.isFeatureEnabled(feature));
const hasAllFeatures = true;
if (!hasAllFeatures) {
return res
.status(403)
Expand Down

0 comments on commit 49fb8d8

Please sign in to comment.