Skip to content

Commit

Permalink
Lowercase allowed watermarks
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Feb 27, 2021
1 parent 0af5006 commit 88ac543
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/settings.py
Expand Up @@ -90,6 +90,7 @@
ALLOWED_WATERMARKS = os.getenv("WATERMARK_OPTIONS", ",").split(",")
DISABLED_WATERMARK = ALLOWED_WATERMARKS.pop(0)
DEFAULT_WATERMARK = ALLOWED_WATERMARKS[0]
ALLOWED_WATERMARKS = [x.lower() for x in ALLOWED_WATERMARKS]

REMOTE_TRACKING_URL = os.getenv("REMOTE_TRACKING_URL")
BUGSNAG_API_KEY = os.getenv("BUGSNAG_API_KEY")

0 comments on commit 88ac543

Please sign in to comment.