Skip to content

Commit

Permalink
increase license limit to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxWaldorf committed Nov 16, 2024
1 parent 2493e97 commit 87c9436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portal/proxy/server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ app.post('/validateLicense', (req, res) => {
const { key, userEmail } = req.body;
console.log('[Backend] Path: /validateLicense, Checked Email:', userEmail);

fetch(`${KEYGEN_URL}/v1/accounts/${KEYGEN_ACCOUNT_ID}/licenses?user=${userEmail}`, {
fetch(`${KEYGEN_URL}/v1/accounts/${KEYGEN_ACCOUNT_ID}/licenses?limit=100&user=${userEmail}`, {
method: 'GET',
headers: {
'Authorization': `Bearer ${KEYGEN_TOKEN}`,
Expand Down

0 comments on commit 87c9436

Please sign in to comment.