correction mentioned by hound

This commit is contained in:
Gopesh Tulsyan 2014-05-08 08:33:05 +05:30
parent cb8f4ccd2e
commit 8e31dd04d7
2 changed files with 1 additions and 2 deletions

View file

@ -1,5 +1,5 @@
class ConferencesController < ApplicationController
def show
@conference = Conference.find_by_title(params[:format])
@conference = Conference.find_by_title(params[:format])
end
end

View file

@ -8,7 +8,6 @@ Osem::Application.routes.draw do
resources :users
resources :people
resources :conference do
get "conferences/(:title)" => "conferences#show"
get "/schedule" => "schedule#show"
put "/schedule" => "schedule#update"
get "/stats" => "stats#index"