mopybird 1 년 전
부모
커밋
cac08881c2
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      apps/web/common/urls.py

+ 3 - 1
apps/web/common/urls.py

@@ -60,6 +60,8 @@ urlpatterns = patterns('', *[
 
     url(r'^withdraw/alipay/save', saveAlipayWithdrawInfo, name= 'saveAlipayWithdrawAccount'),
 
-    url(r'^withdraw/wechat/save', saveWechatWithdrawInfo, name= 'saveWechatWithdrawInfo')
+    url(r'^withdraw/wechat/save', saveWechatWithdrawInfo, name= 'saveWechatWithdrawInfo'),
+
+    url(r'^ali/user/agreement/sign$', makeAliUserAgreementSign, name='makeAliUserAgreementSign')
 ])