Skip to content

Commit

Permalink
Merge pull request #122 from EBI-Metagenomics/taxonomy-overview-endpo…
Browse files Browse the repository at this point in the history
…int-hotfix

Taxonomy overview endpoint hotfix
  • Loading branch information
mberacochea committed Feb 20, 2020
2 parents bc11426 + df4888b commit 25290c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion emgcli/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from emgapi.urls import router as emg_router
from emgapi.urls import mydata_router
from emgapi.urls import utils_router
from emgapianns.urls import mongo_router
from emgapianns.urls import mongo_router, urlpatterns as mongo_url_patterns
from emgapianns.urls import router as emg_ext_router

from openapi_codec import OpenAPICodec
Expand Down Expand Up @@ -109,6 +109,9 @@ def render(self, data, accepted_media_type=None, renderer_context=None):
name='verify_jwt_token_v1'),
]

# emgapianns custom endpoints
urlpatterns += mongo_url_patterns

# Admin
urlpatterns += [
url('admin/', admin.site.urls),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
_requirements = os.path.join(_base, 'requirements.txt')
_requirements_test = os.path.join(_base, 'requirements-test.txt')

version = "1.6.1"
version = "1.6.2"

install_requirements = []
with open(_requirements) as f:
Expand Down

0 comments on commit 25290c5

Please sign in to comment.