Files
zulip/confirmation/urls.py
Luke Faraone b801b50c26 Include third-party django-confirmation library.
Taken from http://code.google.com/p/django-confirmation/.

Code is under the BSD 3-clause license.

(imported from commit cfb5a511097fe14fba7f1bcea62dfa25cfb58622)
2012-10-01 10:45:57 -04:00

15 lines
312 B
Python

# -*- coding: utf-8 -*-
# Copyright: (c) 2008, Jarek Zgoda <jarek.zgoda@gmail.com>
__revision__ = '$Id: urls.py 3 2008-11-18 07:33:52Z jarek.zgoda $'
from django.conf.urls.defaults import *
from confirmation.views import confirm
urlpatterns = patterns('',
(r'^(?P<confirmation_key>\w+)/$', confirm),
)