diff options
author | Magnus Hagander | 2014-12-30 19:11:46 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-12-30 19:11:46 +0000 |
commit | baab4644ea89a3ba36c4376387362711584e535c (patch) | |
tree | 6b0a1a2fef82abf4784041e5e1d5f661ed969b12 /postgresqleu/urls.py | |
parent | e05b66b3033b5fdc1c1e2c4eb278c5d6262c7198 (diff) |
Add suppot for importing upstream users
Initially, support this for invoices and for managers of sponsorships,
which are the most likely usecases for it. More usecases can be added
in the future as they are found.
Diffstat (limited to 'postgresqleu/urls.py')
-rw-r--r-- | postgresqleu/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postgresqleu/urls.py b/postgresqleu/urls.py index 471fae03..d3e6f159 100644 --- a/postgresqleu/urls.py +++ b/postgresqleu/urls.py @@ -160,6 +160,7 @@ urlpatterns = patterns('', # Account info callbacks (r'^accountinfo/search/$', postgresqleu.accountinfo.views.search), + (r'^accountinfo/import/$', postgresqleu.accountinfo.views.importuser), # This should not happen in production - serve by apache! url(r'^(favicon.ico)$', 'django.views.static.serve', { |