felicity-lims/felicity/api/gql/user/__init__.py

24 lines
406 B
Python
Raw Normal View History

2023-08-04 13:12:43 +08:00
from .types import (
UserAuthType,
PermissionType,
GroupType,
UserType,
AuthenticatedData,
UpdatedGroupPerms,
UserEdge,
UserCursorPage,
2023-09-11 13:02:05 +08:00
UserPreferenceType,
2023-08-04 13:12:43 +08:00
)
user_types = [
UserAuthType,
PermissionType,
GroupType,
UserType,
AuthenticatedData,
UpdatedGroupPerms,
UserEdge,
UserCursorPage,
2023-09-11 13:02:05 +08:00
UserPreferenceType,
]