Added URLs needed for the return from Amazon authorization.

Also forgot to put keys in prod.py
pull/1/head
Raymond Yee 2012-04-11 10:37:41 -07:00
parent 11be270cfd
commit b808ddbed0
2 changed files with 8 additions and 0 deletions

View File

@ -30,4 +30,8 @@ if not settings.IS_PREVIEW:
)
urlpatterns += patterns('',
(r'^fps/', include(amazon_fps_obj.urls)),
url(r'^amazon_fps/$', 'regluit.payment.views.testfps', name='app_offsite_amazon_fps'),
)

View File

@ -121,3 +121,7 @@ STATIC_ROOT = '/var/www/static'
# decide which of the period tasks to add to the schedule
#CELERYBEAT_SCHEDULE['send_test_email'] = SEND_TEST_EMAIL_JOB
#CELERYBEAT_SCHEDULE['emit_notifications'] = EMIT_NOTIFICATIONS_JOB
# Amazon credentials (for fps)
AWS_ACCESS_KEY = ''
AWS_SECRET_ACCESS_KEY = ''