This commit is contained in:
fireworks88 2021-08-11 17:15:51 +02:00
parent 7978ba9309
commit b1e4b8849a
6 changed files with 62 additions and 13 deletions

View file

@ -13,7 +13,7 @@ valid_username_regex = re.compile("^[a-zA-Z0-9_\-]{3,25}$")
valid_title_regex = re.compile("^((?!<).){3,100}$")
valid_password_regex = re.compile("^.{8,100}$")
YOUTUBE_KEY = environ.get("YOUTUBE_KEY").strip()
YOUTUBE_KEY = environ.get("YOUTUBE_KEY", "").strip()
COINS_NAME = environ.get("COINS_NAME").strip()
@app.post("/settings/profile")