Skip to content

Commit

Permalink
hotfix: update stripe return / refresh URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
crypto-rizzo committed Feb 18, 2024
1 parent fa5322d commit 2655da5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/apps/root/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def stripe_refresh_link(self):
url = reverse(
"dashboard_organizer:stripe_refresh",
args=[
self.public_id,
self.slug,
],
)
return domain + url
Expand All @@ -215,7 +215,7 @@ def stripe_return_link(self):
url = reverse(
"dashboard_organizer:stripe_return",
args=[
self.public_id,
self.slug,
],
)
return domain + url
Expand Down

0 comments on commit 2655da5

Please sign in to comment.