style: ui readability refactor v1.2.2 (removed uppercase, tracking, increased font sizes)

This commit is contained in:
Daniel Bedeleanu
2026-04-11 11:22:40 +03:00
parent 99b70a9de8
commit 4136d49936
25 changed files with 2552 additions and 548 deletions

View File

@@ -10,6 +10,7 @@ class User(Base):
username = Column(String, unique=True, index=True)
hashed_password = Column(String, nullable=True) # Nullable for LDAP or legacy users
role = Column(String, default="user") # 'admin' or 'user'
origin = Column(String, default="local") # 'local' or 'ldap'
audit_logs = relationship("AuditLog", back_populates="user")