Skip to content

Commit

Permalink
Merge pull request #390 from NREL/develop
Browse files Browse the repository at this point in the history
Fix /futurecost endpoint URL routing issue
  • Loading branch information
Bill-Becker authored Dec 20, 2022
2 parents 89aa0ad + 39515ba commit c8dc820
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions reopt_api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,10 @@ def page_not_found(request, url):
re_path(r'', include(stable_api.urls), name='ghpghx'),

path('dev/', include('job.urls')),
re_path(r'', include(dev_api.urls), name='job'),

path('dev/', include('futurecosts.urls')),
re_path(r'', include(dev_api.urls), name='job'),
re_path(r'', include(dev_api.urls), name='futurecosts'),

re_path(r'', include(stable_api.urls), name='ghpghx'),

re_path(r'(.*)', page_not_found, name='404'),
]

Expand Down

0 comments on commit c8dc820

Please sign in to comment.