Merge pull request #259 from grafana/iskhakov/mobile-fix-2

Fix wrong env var for mobile app settings
This commit is contained in:
Ildar Iskhakov 2022-07-20 14:07:12 +03:00 committed by GitHub
commit 79453dc88d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -405,7 +405,7 @@ PUSH_NOTIFICATIONS_SETTINGS = {
"APNS_TOPIC": os.environ.get("APNS_TOPIC", None),
"APNS_AUTH_KEY_ID": os.environ.get("APNS_AUTH_KEY_ID", None),
"APNS_TEAM_ID": os.environ.get("APNS_TEAM_ID", None),
"APNS_USE_SANDBOX": os.environ.get("APNS_USE_SANDBOX", True),
"APNS_USE_SANDBOX": getenv_boolean("APNS_USE_SANDBOX", True),
"USER_MODEL": "user_management.User",
"UPDATE_ON_DUPLICATE_REG_ID": True,
}