feat: Add HWIDUserController to the API controllers; update __all__ exports

fix: Remove unused BulkDeleteUsersByStatusRequestDto and BulkDeleteUsersRequestDto from models
This commit is contained in:
Artem 2025-05-02 17:19:31 +02:00
parent 42f1bfa066
commit c64756aed1
No known key found for this signature in database
GPG key ID: 833485276B7902CE
2 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,8 @@ from .users import UsersController
from .users_bulk_actions import UsersBulkActionsController
from .users_stats import UsersStatsController
from .xray_config import XrayConfigController
from .webhooks import WebhookUtility
from .webhooks import WebhookUtility
from .hwid import HWIDUserController
__all__ = [
"APITokensManagementController",
@ -35,5 +36,6 @@ __all__ = [
"UsersBulkActionsController",
"UsersStatsController",
"XrayConfigController",
"WebhookUtility"
"WebhookUtility",
"HWIDUserController"
]

View file

@ -170,8 +170,6 @@ __all__ = [
"BulkAllUpdateUsersRequestDto",
"BulkAllUpdateUsersResponseDto",
"UpdateUserFields",
"BulkDeleteUsersByStatusRequestDto",
"BulkDeleteUsersRequestDto",
"BulkResponseDto",
"BulkUpdateUsersInboundsRequestDto",
"FindAllApiTokensResponseDto",