create project and create model and dashboard

This commit is contained in:
2025-12-11 10:16:43 +05:30
parent 2371202ac3
commit 2e62320167
55 changed files with 1072 additions and 0 deletions

21
app/models/user_model.py Normal file
View 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