Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
remove duplicate years from api urls
Browse files Browse the repository at this point in the history
  • Loading branch information
rshorey committed Jan 24, 2019
1 parent e2a1ff1 commit f102b0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cycle_2018/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
router.register(r'filings', FilingViewSet, base_name=Filing)


API = [path('2018/api/v1/', include(router.urls))]
API = [path('api/v1/', include(router.urls))]


urlpatterns = API + [
Expand Down
2 changes: 1 addition & 1 deletion cycle_2020/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
router.register(r'filings', FilingViewSet, base_name=Filing)


API = [path('2020/api/v1/', include(router.urls))]
API = [path('api/v1/', include(router.urls))]


urlpatterns = API + [
Expand Down

0 comments on commit f102b0a

Please sign in to comment.