7 lines
143 B
Ruby
7 lines
143 B
Ruby
class ConferenceController < ApplicationController
|
|
layout false
|
|
|
|
def show
|
|
@conference = Conference.find_by_title(params[:id])
|
|
end
|
|
end
|