Skip to content

Commit

Permalink
Wording change in setup script. Added 'plan' property back onto users.
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Peters authored and Luke Peters committed Mar 15, 2019
1 parent 0f360be commit 3681cf9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion api/main/user/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ def __init__(self):
"last_login": tools.nowDatetimeUTC(),
"first_name": "",
"last_name": "",
"email": ""
"email": "",
"plan": "basic"
}

def get(self):
Expand Down
4 changes: 2 additions & 2 deletions setup
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ read -p "Flask App Port [$FLASK_PORT_DEFAULT]: " FLASK_PORT
FLASK_PORT=${FLASK_PORT:-$FLASK_PORT_DEFAULT}
echo

# URL of the front-end JavaScript application
read -p "Front-End Base URL, port included (e.g. http://localhost, http://localhost:3000): " FRONTEND_DOMAIN
# Domain of the front-end JavaScript application
read -p "Front-End Domain, port included (e.g. http://localhost, http://localhost:3000): " FRONTEND_DOMAIN
echo

# MongoDB hostname
Expand Down

0 comments on commit 3681cf9

Please sign in to comment.