summaryrefslogtreecommitdiffstats
path: root/app.py
diff options
context:
space:
mode:
authorTeddy Wing2015-01-31 18:17:03 -0500
committerTeddy Wing2015-01-31 18:17:03 -0500
commit0a730ea1962522bf5fb2db41a87ac172dc51750e (patch)
tree40076b29b591fbfd91a51a0564ade3238f94c2d9 /app.py
parent7476e4c756b41407387f025ba4478e1b80fb8065 (diff)
downloadedu-net-0a730ea1962522bf5fb2db41a87ac172dc51750e.tar.bz2
Add Interest models
Two new models: * Interest * UserInterest (through model) These allow us to record interests/passions and associate them with users.
Diffstat (limited to 'app.py')
-rw-r--r--app.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app.py b/app.py
index 6e4402d..bea83f3 100644
--- a/app.py
+++ b/app.py
@@ -3,6 +3,7 @@ from flask import Flask
from flask_user import SQLAlchemyAdapter, UserManager
from modules.shared.models import db
+from modules.interest.models import Interest, UserInterest
from modules.user.models import User, UserAuth
app = Flask(__name__)