diff options
Diffstat (limited to 'ogcp/models.py')
-rw-r--r-- | ogcp/models.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ogcp/models.py b/ogcp/models.py new file mode 100644 index 0000000..668c623 --- /dev/null +++ b/ogcp/models.py @@ -0,0 +1,5 @@ +from flask_login import UserMixin + +class User(UserMixin): + def get_id(self): + return 1 |