Coverage for website/events/models/__init__.py: 100.00%
6 statements
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
1from .event import EVENT_CATEGORIES, Event
2from .event_registration import EventRegistration, registration_member_choices_limit
3from .external_event import ExternalEvent
4from .feed_token import FeedToken
5from .registration_information_field import (
6 BooleanRegistrationInformation,
7 IntegerRegistrationInformation,
8 RegistrationInformationField,
9 TextRegistrationInformation,
10)
12__all__ = [
13 "Event",
14 "EVENT_CATEGORIES",
15 "EventRegistration",
16 "ExternalEvent",
17 "registration_member_choices_limit",
18 "FeedToken",
19 "BooleanRegistrationInformation",
20 "IntegerRegistrationInformation",
21 "RegistrationInformationField",
22 "TextRegistrationInformation",
23]