Skip to content

Commit

Permalink
Merge pull request #508 from PermanentOrg/pledgedata-client
Browse files Browse the repository at this point in the history
Pass client into PledgeData
  • Loading branch information
meisekimiu authored Dec 18, 2024
2 parents 83d5999 + 7d01774 commit b5c273f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/pledge/components/new-pledge/new-pledge.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ export class NewPledgeComponent implements OnInit, AfterViewInit {
stripeToken: stripeResult.token.id,
zip: stripeResult.token.card?.address_zip,
timestamp: new Date().getTime(),
client: 'Web App',
};

try {
Expand Down Expand Up @@ -317,4 +318,5 @@ export interface PledgeData {
id?: string;
paid?: boolean;
stripeChargeId?: string;
client?: 'Web App';
}

0 comments on commit b5c273f

Please sign in to comment.