added static url to base urls
This commit is contained in:
parent
4e6b7479e6
commit
ce99afb965
1 changed files with 1 additions and 1 deletions
|
|
@ -363,12 +363,12 @@ def make_app(
|
|||
(get_root_url(r'/?'), LandingPage),
|
||||
(get_root_calculator_url(r'/?'), CalculatorForm),
|
||||
(get_root_calculator_url(r'/report'), ConcentrationModel),
|
||||
(get_root_url(r'/static/(.*)'), StaticFileHandler, {'path': static_dir}),
|
||||
(get_root_calculator_url(r'/static/(.*)'), StaticFileHandler, {'path': calculator_static_dir}),
|
||||
]
|
||||
|
||||
urls: typing.List = base_urls + [
|
||||
(get_root_url(r'/_c/(.*)'), CompressedCalculatorFormInputs),
|
||||
(get_root_url(r'/static/(.*)'), StaticFileHandler, {'path': static_dir}),
|
||||
(get_root_calculator_url(r'/report-json'), ConcentrationModelJsonResponse),
|
||||
(get_root_calculator_url(r'/baseline-model/result'), StaticModel),
|
||||
(get_root_calculator_url(r'/api/arve/v1/(.*)/(.*)'), ArveData),
|
||||
|
|
|
|||
Loading…
Reference in a new issue