Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/status board #708

Open
wants to merge 16 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
no message
  • Loading branch information
Oludare96 authored and cardene committed Aug 8, 2017
commit 6f8a5aa1f1af2f853348c57125c06762eb91780e
4 changes: 2 additions & 2 deletions api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def register_url(self, subclass, viewset):
register_route(r'rawdata', views.RawDatumViewSet)
register_route(r'user', views.ShareUserViewSet)
register_route(r'sources', views.SourceViewSet)
register_route(r'harvest', views.HarvestLogViewSet)
register_route(r'sourceConfig', views.SourceConfigViewSet)
register_route(r'HarvestLog', views.HarvestLogViewSet)
register_route(r'SourceConfig', views.SourceConfigViewSet)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these routes should be snake case and plural (harvest_logs, source_configs)


router.register(r'normalizeddata', views.NormalizedDataViewSet, base_name='normalizeddata')

Expand Down