-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add credits for subscription #2710
base: main
Are you sure you want to change the base?
Conversation
if (gifter_id) { | ||
await processGiftedPayment({ event }); | ||
} else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Used the else here, otherwise it would also apply on gifters?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean probably it should apply, let's check with product
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds functionality to assign credits ("cores") to users after completing a standard subscription purchase.
- Introduces a new function assignSubscriptionCores to calculate and assign cores based on a remote configuration value.
- Updates the transaction processing flow to differentiate between gifted payments and manual subscription purchases by calling assignSubscriptionCores accordingly.
Comments suppressed due to low confidence (1)
src/routes/webhooks/paddle.ts:543
- If data.details.totals.grandTotal can include decimals, using parseInt might truncate the value and result in a loss of precision. Consider using parseFloat to handle decimal values if needed.
const total = parseInt(data.details?.totals?.grandTotal || '0');
const total = parseInt(data.details?.totals?.grandTotal || '0'); | ||
const coresForPayment = Math.floor(modifier * total); | ||
|
||
if (coresForPayment <= 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The error message 'Cores for payment is less than 0' does not accurately reflect the condition (<= 0) being checked. Consider updating it to 'Cores for payment is 0 or less' for clarity.
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work, nothing blocking, just some comments to verify.
if (gifter_id) { | ||
await processGiftedPayment({ event }); | ||
} else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean probably it should apply, let's check with product
src/routes/webhooks/paddle.ts
Outdated
} | ||
|
||
const modifier = remoteConfig.vars?.coreModifier || 0.001; | ||
const total = parseInt(data.details?.totals?.grandTotal || '0'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's check with product if they want tax or no tax here?
Add cores to people who complete purchases for plus subscription.
The 1 core value is stores in remoteConfig so we can easily update it.