-
-
Save trevrosen/136093 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Provides a list of attendees based on meeting ID | |
get '/list-attendees/:meeting_id' do | |
w = WebEx::Request.new | |
attendees = w.lst_meeting_attendee(params[:meeting_id]) | |
if attendees[:response][:result] == "SUCCESS" | |
@attendees = attendees[:body] | |
erb :list_attendees, :layout => false | |
else | |
LOGGER.warn('Problem obtaining meeting information') | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment