create project and create model and dashboard
This commit is contained in:
21
app/models/user_model.py
Normal file
21
app/models/user_model.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# from app.services.db_service import db
|
||||
# from werkzeug.security import generate_password_hash, check_password_hash
|
||||
|
||||
# class User(db.Model):
|
||||
# id = db.Column(db.Integer, primary_key=True)
|
||||
# name = db.Column(db.String(120))
|
||||
# email = db.Column(db.String(120), unique=True)
|
||||
# password_hash = db.Column(db.String(255))
|
||||
|
||||
# def set_password(self, password):
|
||||
# self.password_hash = generate_password_hash(password)
|
||||
|
||||
# def check_password(self, password):
|
||||
# return check_password_hash(self.password_hash, password)
|
||||
|
||||
|
||||
class User:
|
||||
def __init__(self, id, name, email):
|
||||
self.id = id
|
||||
self.name = name
|
||||
self.email = email
|
||||
Reference in New Issue
Block a user