Skip to content

Instantly share code, notes, and snippets.

Created June 25, 2009 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/136090 to your computer and use it in GitHub Desktop.
Save anonymous/136090 to your computer and use it in GitHub Desktop.
## 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
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