From 3681cf915569578b5a13552e6006131ae681d59c Mon Sep 17 00:00:00 2001 From: Luke Peters Date: Fri, 15 Mar 2019 17:41:49 -0400 Subject: [PATCH] Wording change in setup script. Added 'plan' property back onto users. --- api/main/user/models.py | 3 ++- setup | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/api/main/user/models.py b/api/main/user/models.py index 262bd1d..c922eab 100644 --- a/api/main/user/models.py +++ b/api/main/user/models.py @@ -17,7 +17,8 @@ class User: "last_login": tools.nowDatetimeUTC(), "first_name": "", "last_name": "", - "email": "" + "email": "", + "plan": "basic" } def get(self): diff --git a/setup b/setup index 5997a4a..ed153a9 100755 --- a/setup +++ b/setup @@ -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