perf: ldap import user error msg

This commit is contained in:
wangruidong
2024-08-26 15:28:17 +08:00
committed by Bryan
parent f866b93f96
commit 7a19007aba
5 changed files with 26 additions and 0 deletions

7
apps/settings/const.py Normal file
View File

@@ -0,0 +1,7 @@
from django.db.models import TextChoices
class ImportStatus(TextChoices):
ok = 'ok', 'Ok'
pending = 'pending', 'Pending'
error = 'error', 'Error'