Changeset - f66a13a8ab99
[Not reviewed]
default
1 1 1
Mads Kiilerich (mads) - 5 years ago 2020-10-10 21:33:42
mads@kiilerich.com
Grafted from: a831545a4e22
routing: move config.routing to kallithea.controllers

Routing doesn't belong in config. Having it there caused unfortunate
dependencies.

We do routing the old way. If we did it the new way, it would be defined in the
root controller. But for now, we just place it next to the root controller.
2 files changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/controllers/root.py
Show inline comments
 
@@ -14,8 +14,8 @@
 
from tg import config
 
from tgext.routes import RoutedController
 

	
 
from kallithea.config.routing import make_map
 
from kallithea.controllers.error import ErrorController
 
from kallithea.controllers.routing import make_map
 
from kallithea.lib.base import BaseController
 

	
 

	
kallithea/controllers/routing.py
Show inline comments
 
file renamed from kallithea/config/routing.py to kallithea/controllers/routing.py
0 comments (0 inline, 0 general)