urls.py 428 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. # !/usr/bin/env python
  3. from django.conf.urls import patterns, url
  4. from apps.web.wechat3rd.views import *
  5. urlpatterns = patterns('',
  6. url(r'^event$', componentEvents, name='events'),
  7. url(r'^auth/notify$', authNotify, name='authNotify'),
  8. url(r'^([^/]+)/callback$', authorizerEvents, name = 'authorizerEvents')
  9. )