5 lines
132 B
Ruby
5 lines
132 B
Ruby
class ConferencesController < ApplicationController
|
|
def show
|
|
@conference = Conference.find_by_title(params[:format])
|
|
end
|
|
end
|