-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/add description field to meeting model #135
Conversation
…ting model The 'TeamMeeting' model now includes an optional 'description' field. This change allows for additional information to be provided about the team meeting, if necessary.
The migration.sql file adds a new column "description" of type TEXT to the "TeamMeeting" table. This allows for an optional description field to be associated with each meeting in the model. This change enhances the flexibility and usability of the meeting model by providing a way to include additional information about each meeting.
…ontext The meeting seed data now includes a description field to provide more information and context about each meeting. This improves the overall quality of the seed data and makes it more useful for testing and development purposes.
…se and MeetingResponseWithSprintAndAgenda classes for better representation of meeting descriptions The MeetingResponse and MeetingResponseWithSprintAndAgenda classes now have a description property. This allows for a more comprehensive representation of meeting objects by including a detailed description of the meeting.
…TeamMeeting and updateTeamMeeting methods The createTeamMeeting and updateTeamMeeting methods in the SprintsService now support the description field in the CreateTeamMeetingDto and UpdateTeamMeetingDto respectively. This allows users to provide a description for team meetings, providing more context and information about the meeting.
…MeetingDto for better meeting information The CreateTeamMeetingDto now includes a description field, which allows users to provide a detailed description of the meeting. This improves the information available for each team meeting and provides more context for participants.
…n e2e tests The e2e tests for the Sprints Controller now include a description field in the sprint objects. This change ensures that the description field is properly tested and validated in the controller's endpoints.
The meeting model schema has been updated to include an optional description field. This change was made in PR #135.
Everything else works fine, all tests passed |
… description property in CreateTeamMeetingDto The @IsOptional() decorator is added to the description property in the CreateTeamMeetingDto class. This change allows the description property to be optional when creating a team meeting.
I have added |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E2e tests passed, swagger example looks good. I had to go up to sprint 4 to create a meeting without a conflict, but it works as described - nice work!
Description
This PR adds an optional description field to the meeting model schema, which allows users to provide a detailed description of the meeting. This improves the information available for each team meeting and provides more context for participants.
Issue link
Fixes # (issue)
Type of change
How Has This Been Tested?
Checklist: