fix conferences routes to allow GETs again

for now

Change-Id: I6db47d461961bfc83a8d3d1e6f5c060616879c16
Reviewed-on: https://gerrit.instructure.com/44137
Reviewed-by: Rob Orton <rob@instructure.com>
Tested-by: Rob Orton <rob@instructure.com>
QA-Review: Rob Orton <rob@instructure.com>
Product-Review: Rob Orton <rob@instructure.com>
This commit is contained in:
Brian Palmer 2014-11-08 08:54:55 -07:00 committed by Rob Orton
parent c7b7deb633
commit 35f1d2f8db
1 changed files with 2 additions and 2 deletions

View File

@ -158,8 +158,8 @@ CanvasRails::Application.routes.draw do
concern :conferences do
resources :conferences do
post :join
post :close
match :join, via: [:get, :post]
match :close, via: [:get, :post]
get :settings
end
end