change checksum handling & show active meetings

This commit is contained in:
Josh
2017-06-07 11:06:31 -04:00
parent 24c8952e59
commit f5095b1e4d
7 changed files with 195 additions and 10 deletions

View File

@ -37,6 +37,7 @@
en-US:
actions: Actions
active_meetings: (active meetings)
admin_room_title: Welcome %{user}
are_you: Are you %{name}?
are_you_sure: Are you sure?

View File

@ -48,6 +48,7 @@ Rails.application.routes.draw do
post '/:room_id/:id/callback', to: 'bbb#callback', :constraints => {:id => disallow_slash, :room_id => disallow_slash}
# routes shared between meetings and rooms
get '/(:room_id)/request', to: 'landing#send_data', :defaults => { :format => 'xml' }
get '/(:room_id)/:id/join', to: 'bbb#join', defaults: {room_id: nil, format: 'json'}, :constraints => {:id => disallow_slash, :room_id => disallow_slash}
get '/(:room_id)/:id', to: 'landing#resource', as: :meeting_room, defaults: {room_id: nil}, :constraints => {:id => disallow_slash, :room_id => disallow_slash}
end