f3-data-models 0.5.11__tar.gz → 0.5.12__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: f3-data-models
3
- Version: 0.5.11
3
+ Version: 0.5.12
4
4
  Summary: The data schema and models for F3 Nation applications.
5
5
  License: MIT
6
6
  Author: Evan Petzoldt
@@ -991,7 +991,7 @@ class Attendance(Base):
991
991
 
992
992
  event_instance (EventInstance): The associated event instance.
993
993
  user (User): The associated user.
994
- slack_user (Optional[SlackUser]): The associated Slack user.
994
+ slack_users (Optional[List[SlackUser]]): The associated Slack Users for this User (a User can be in multiple SlackSpaces).
995
995
  attendance_x_attendance_types (List[Attendance_x_AttendanceType]): The association between the attendance and attendance types.
996
996
  attendance_types (List[AttendanceType]): The associated attendance types.
997
997
  """ # noqa: E501
@@ -1014,7 +1014,7 @@ class Attendance(Base):
1014
1014
 
1015
1015
  event_instance: Mapped[EventInstance] = relationship(innerjoin=True, cascade="expunge", viewonly=True)
1016
1016
  user: Mapped[User] = relationship(innerjoin=True, cascade="expunge", viewonly=True)
1017
- slack_user: Mapped[Optional[SlackUser]] = relationship(
1017
+ slack_users: Mapped[Optional[List[SlackUser]]] = relationship(
1018
1018
  innerjoin=False, cascade="expunge", secondary="users", viewonly=True
1019
1019
  )
1020
1020
  attendance_x_attendance_types: Mapped[List[Attendance_x_AttendanceType]] = relationship(
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.5.11"
3
+ version = "0.5.12"
4
4
  description = "The data schema and models for F3 Nation applications."
5
5
  authors = ["Evan Petzoldt <evan.petzoldt@protonmail.com>"]
6
6
  readme = "README.md"