spookylukey / django-paypal

A pluggable Django application for integrating PayPal Payments Standard or Payments Pro
MIT License
729 stars 208 forks source link

Documentation: Remove hardcoded url from view #188

Closed vassilisw closed 7 years ago

vassilisw commented 7 years ago

This applies to documentation...

in our views.py, implementing the view_that_asks_for_money(request) instead of "notify_url": "https://www.example.com" + reverse('paypal-ipn'), we can have "notify_url": request.build_absolute_uri(reverse('paypal-ipn')),

spookylukey commented 7 years ago

Thanks for the suggestion, done now