Skip to content

Commit

Permalink
delete interview scheduled meeting #232
Browse files Browse the repository at this point in the history
232-delete-interview-scheduled-meeting
  • Loading branch information
AshenWijesingha authored Apr 26, 2022
1 parent 13ddbb5 commit 934e35a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/api/services/Meeting.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ export const fetchMeetingById = async (meetingId: string) => {
export const deleteMeetingPermanently = (meetingId: string) => {
if (meetingId) {
return MeetingModel.findByIdAndDelete(meetingId)
return axios
.delete(`${process.env.MS_MEETING_MANAGER_API}/api/msteams/internalmeeting/meetingId`)
.then((meeting) => {
return meeting;
})
Expand Down

0 comments on commit 934e35a

Please sign in to comment.