Skip to content

Commit

Permalink
Website: add default organization to Premium trial license keys. (#22192
Browse files Browse the repository at this point in the history
)

Closes: #22190

Changes:
- updated `save-questionnaire-progress` to set a default value for the
`organization` value of generated license keys (if a user does not have
an organization set)
  • Loading branch information
eashaw committed Sep 17, 2024
1 parent ddbdce4 commit 1f1bc9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/api/controllers/save-questionnaire-progress.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ module.exports = {
let thirtyDaysFromNowAt = Date.now() + (1000 * 60 * 60 * 24 * 30);
let trialLicenseKeyForThisUser = await sails.helpers.createLicenseKey.with({
numberOfHosts: 10,
organization: this.req.me.organization,
organization: this.req.me.organization ? this.req.me.organization : 'Fleet Premium trial',
expiresAt: thirtyDaysFromNowAt,
});
// Save the trial license key to the DB record for this user.
Expand Down

0 comments on commit 1f1bc9c

Please sign in to comment.