Skip to content

Commit

Permalink
Disable fitbit report and scientifica landing page.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-AP committed Dec 1, 2023
1 parent 3f70f97 commit 764143b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,5 +202,5 @@
DDM_WATCH_BP_ID = os.getenv('DDM_WATCH_BP_ID', None)
DDM_SEARCH_BP_ID = os.getenv('DDM_SEARCH_BP_ID', None)

DDM_FITBIT_PROJECT_ID = os.getenv('DDM_FITBIT_PROJECT_ID', None)
DDM_FITBIT_API_TOKEN = os.getenv('DDM_FITBIT_API_TOKEN', None)
# DDM_FITBIT_PROJECT_ID = os.getenv('DDM_FITBIT_PROJECT_ID', None)
# DDM_FITBIT_API_TOKEN = os.getenv('DDM_FITBIT_API_TOKEN', None)
4 changes: 2 additions & 2 deletions digital_meal/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

urlpatterns = [
path('report/youtube/<slug:external_participant_id>', dm_views.IndividualReport.as_view(), name='individual-report'),
path('report/fitbit/<slug:external_participant_id>', dm_views.IndividualFitbitReport.as_view(), name='individual-fitbit-report'),
path('', dm_views.ScientificaLandingView.as_view(), name='scientifica')
# path('report/fitbit/<slug:external_participant_id>', dm_views.IndividualFitbitReport.as_view(), name='individual-fitbit-report'),
# path('', dm_views.ScientificaLandingView.as_view(), name='scientifica')
]

0 comments on commit 764143b

Please sign in to comment.