mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Paypal/stripe return needs user profile for JS.
This commit is contained in:
parent
b0f1c5b91b
commit
71b9b2f3d8
2 changed files with 3 additions and 0 deletions
2
Makefile
2
Makefile
|
@ -58,6 +58,8 @@ mongo:
|
|||
- docker exec -it db_mongo mongo --port 29019
|
||||
redis:
|
||||
- docker exec -it db_redis redis-cli -p 6579
|
||||
postgres:
|
||||
- docker exec -it db_postgres psql -U newsblur
|
||||
down:
|
||||
- RUNWITHMAKEBUILD=True docker-compose -f docker-compose.yml -f docker-compose.metrics.yml down
|
||||
nbdown: down
|
||||
|
|
|
@ -290,6 +290,7 @@ def paypal_form(request):
|
|||
def paypal_return(request):
|
||||
|
||||
return render(request, 'reader/paypal_return.xhtml', {
|
||||
'user_profile': request.user.profile,
|
||||
})
|
||||
|
||||
@login_required
|
||||
|
|
Loading…
Add table
Reference in a new issue