-
Notifications
You must be signed in to change notification settings - Fork 32
CON-328 Add HTTP call to the slack when a meeting is ended #505
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
base: develop
Are you sure you want to change the base?
Conversation
82fb602
to
775708d
Compare
|
||
def upgrade(): | ||
op.add_column('events', sa.Column( | ||
'organizer_email', sa.String(), nullable=True)) |
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.
I just checked Samuel's PR and I saw that the organizer email is sent as a list since it is taking two emails, is this data type appropriate for storing it?
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.
I just wanna know from the list of 2 emails, how will I know which one is the actual organizer_email @mifeille
b2765d4
to
a9b7898
Compare
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.
Please validate organizerEmail and roomId fields.
79292d5
to
2a3cd94
Compare
A new task was added on top of this and it is not yet done.
2a3cd94
to
412494e
Compare
161ebb3
to
10e5fa3
Compare
- ensure the returned url is comprised with the organizer_email and room_id [Delivers CON-328]
10e5fa3
to
dd9dbb1
Compare
Description
This feature ensures that an HTTP call is made to the slack integration micro-service when a meeting is ended, either by the user or when the meeting time runs out.
It sends out different arguments including the organizer_email, room_id, and the event_id.
How to test it:
SLACK_NOTIFICATION_URL=https://www.softwaretestinghelp.com/tools/30-top-website-link-verification-testing-tools/
redis
mutation{ endEvent(calendarId:"[email protected]", eventId:"0manph5i3e8lnld6tnvb0o1pcc", organizerEmail:"[email protected]", roomId: "18", startTime:"2018-08-19T23:00:00-07:00", endTime:"2018-08-20T05:00:00-07:00", meetingEndTime: "2018-08-14T07:00:00-07:00"){ event{ eventId eventTitle checkedIn cancelled meetingEndTime room{ id name calendarId } } } }
200
after finishing the task with a notify-slack name.Type of change
Please select the relevant option
How Has This Been Tested?
New feature
JIRA
CON-328
CV3-63