Enhance User model: add email field with unique constraint, update id_card field to allow null values, and include verified field. Update UserAdmin to display verified field. Improve device listing to filter by logged-in user.
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 2m39s

This commit is contained in:
2025-03-28 22:25:30 +05:00
parent ddfbeba2f4
commit 43f9b7ef7c
9 changed files with 145 additions and 59 deletions

11
.vscode/settings.json vendored
View File

@ -1,3 +1,12 @@
{
"djlint.showInstallError": false
"djlint.showInstallError": false,
"python.testing.unittestArgs": [
"-v",
"-s",
"./api",
"-p",
"*test.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}