Skip to content

Commit

Permalink
Fix backend deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Sep 25, 2024
1 parent fa4c82a commit 8317b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/appointment/secrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def normalize_secrets():
os.environ['ZOOM_AUTH_CLIENT_ID'] = secrets.get('client_id')
os.environ['ZOOM_AUTH_SECRET'] = secrets.get('secret')
os.environ['ZOOM_API_SECRET'] = secrets.get('api_secret')
os.environ['ZOOM_API_NEW_APP'] = secrets.get('api_new_app', False)
os.environ['ZOOM_API_NEW_APP'] = secrets.get('api_new_app', 'False')

fxa_secrets = os.getenv('FXA_SECRETS')

Expand Down

0 comments on commit 8317b36

Please sign in to comment.