clarion/app/controllers/management/home_controller.rb

14 lines
262 B
Ruby
Raw Normal View History

2014-09-17 12:43:17 +03:00
module Management
class HomeController < ManagementController
def index
end
def set_conference
conference = Conference.find(params[:id])
set_current_conference(conference)
redirect_to [:management, conference]
end
2014-09-17 12:43:17 +03:00
end
end