Skip to content

Commit

Permalink
fix: Setting secure-cross-origin-opener-policy to none
Browse files Browse the repository at this point in the history
  • Loading branch information
Hina Shah committed Apr 3, 2024
1 parent 94ec1b4 commit ee93e6a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions appstore/appstore/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
if DEBUG_STRING.lower() == "false":
DEBUG_STRING = ""
DEBUG = bool(DEBUG_STRING)

# stub, local, dev, val, prod.
DEV_PHASE = os.environ.get("DEV_PHASE", "local")
TYCHO_MODE = os.environ.get("TYCHO_MODE", "null" if DEV_PHASE == "stub" else "live")
Expand Down Expand Up @@ -159,6 +160,7 @@
SOCIALACCOUNT_PROVIDERS = {
"google": {"SCOPE": ["profile", "email"], "AUTH_PARAMS": {"access_type": "offline"}}
}
SECURE_CROSS_ORIGIN_OPENER_POLICY = None

TEMPLATES = [
{
Expand Down

0 comments on commit ee93e6a

Please sign in to comment.