Client billing code push

This commit is contained in:
Pooja Fulari
2026-04-15 10:32:46 +05:30
commit 92670665c3
599 changed files with 9348 additions and 0 deletions

10
app/routes/ldap_user.py Normal file
View File

@@ -0,0 +1,10 @@
# from flask_login import UserMixin
# # --------------------
# # LDAP User class (not stored in DB)
# # --------------------
# class LDAPUser(UserMixin):
# """Represents an authenticated LDAP user (kept in session)."""
# def __init__(self, dn, username):
# self.dn = dn
# self.username = username
# self.id = username # 🔑 Use username for session id (stable)