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