Skip to content

Instantly share code, notes, and snippets.

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