##// END OF EJS Templates
updated routing
updated routing

File last commit:

r82:67071350 default
r92:2968fb63 default
Show More
utils.py
7 lines | 186 B | text/x-python | PythonLexer
def get_repo_slug(request):
path_info = request.environ.get('PATH_INFO')
repo_name = path_info.split('/')[-2]
action = path_info.split('/')[-1]
return repo_name