From 9406a47cb6daf6a0c5ff7ecd5591fa43f130c6bb Mon Sep 17 00:00:00 2001 From: Asad Date: Wed, 16 Mar 2016 11:26:02 +0530 Subject: [PATCH] Add routes.py to specify default application and controller --- private/routes.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 private/routes.py diff --git a/private/routes.py b/private/routes.py new file mode 100644 index 0000000..b3c1698 --- /dev/null +++ b/private/routes.py @@ -0,0 +1,9 @@ +# copy this file to web2py root directory +routers = dict( + + # base router + BASE=dict( + default_application='baadal', + default_controller='user', + ), +)