Skip to content

Commit

Permalink
Updated account_project with some missing URLpatterns
Browse files Browse the repository at this point in the history
  • Loading branch information
brosner committed Jul 10, 2010
1 parent c8c9b73 commit 157ca59
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pinax/projects/account_project/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
from django.contrib import admin
admin.autodiscover()

from pinax.apps.account.openid_consumer import PinaxConsumer


handler500 = "pinax.views.server_error"

Expand All @@ -13,8 +15,11 @@
url(r"^$", direct_to_template, {
"template": "homepage.html",
}, name="home"),
url(r"^admin/invite_user/$", "pinax.apps.signup_codes.views.admin_invite_user", name="admin_invite_user"),
url(r"^admin/", include(admin.site.urls)),
url(r"^about/", include("about.urls")),
url(r"^account/", include("pinax.apps.account.urls")),
url(r"^openid/(.*)", PinaxConsumer()),
)


Expand Down

0 comments on commit 157ca59

Please sign in to comment.