clarion/app/controllers/workshops_controller.rb

47 lines
904 B
Ruby
Raw Normal View History

2014-08-30 19:59:33 +03:00
class WorkshopsController < ApplicationController
before_filter :authenticate_user!
before_action :assign_lecture, only: [:show, :edit, :update]
def index
@workshops = Workshop.where user: current_user
end
def new
@workshop = Workshop.new
end
def create
@workshop = current_user.workshops.build workshop_params
if @workshop.save
redirect_to @workshop
else
render :new, status: :unprocessable_entity
end
end
def edit
end
def update
if @workshop.update workshop_params
redirect_to @workshop
else
render :edit, status: :unprocessable_entity
end
end
def show
end
private
def assign_workshop
2014-09-01 12:57:27 +03:00
@workshop = current_user.workshops.find params[:id]
2014-08-30 19:59:33 +03:00
end
def workshop_params
params.require(:workshop).permit [:title, :subtitle, :length, :language, :abstract, :description, :notes, :track_id]
end
end