Skip to content

Commit

Permalink
updating version of latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
sjgutta committed Jan 18, 2021
1 parent f914ea3 commit 73aab48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ def restful_login_user():
password = data.get("password")
user = User.get_or_none(username=username)
if user and user.check_password(password) and user.has_access:
return {"success": os.environ.get('SECRET_KEY'), "version": "1.3"}
return {"success": os.environ.get('SECRET_KEY'), "version": "1.4"}
else:
return {"error": "invalid credentials"}

0 comments on commit 73aab48

Please sign in to comment.