Skip to content

Commit

Permalink
feat(backend): populate stripe_email user field by default upon create
Browse files Browse the repository at this point in the history
  • Loading branch information
TyIsI committed Jan 5, 2025
1 parent 39c2f51 commit 8364322
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/services/UserService.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public function Create($username, $password, $email, $fname, $lname, $membership
$user->password = $hashedPassword;
$user->email = $email;
$user->payment_email = $email;
$user->stripe_email = $email;
$user->fname = $fname;
$user->lname = $lname;
$user->active = 't';
Expand Down

0 comments on commit 8364322

Please sign in to comment.