Files
lms/community/__init__.py
Anand Chitipothu 15b8b99ae2 fix: fixed the issue with dynamic routes.
- The code to install regex controller was not always executed. Forced the
  exection of that by adding it to community/__init__.py
- Renoved the that code from hooks.py
2021-04-07 01:40:13 +05:30

8 lines
159 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
__version__ = '0.0.1'
from .routing import install_regex_converter
install_regex_converter()