47 lines
890 B
Ruby
47 lines
890 B
Ruby
|
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
|
||
|
@workshop = Workshop.find params[:id]
|
||
|
end
|
||
|
|
||
|
def workshop_params
|
||
|
params.require(:workshop).permit [:title, :subtitle, :length, :language, :abstract, :description, :notes, :track_id]
|
||
|
end
|
||
|
end
|