module Admin class TargetsController < Admin::BaseController load_and_authorize_resource :conference, find_by: :short_title load_and_authorize_resource :target, through: :conference def index authorize! :update, Target.new(conference_id: @conference.id) end def new @target = @conference.targets.new end def create @target = @conference.targets.new(target_params) if @target.save(target_params) redirect_to(admin_conference_targets_path(conference_id: @conference.short_title), notice: 'Target successfully created.') else flash[:error] = "Creating target failed: #{@target.errors.full_messages.join('. ')}." render :new end end def edit; end def update if @target.update_attributes(target_params) redirect_to(admin_conference_targets_path(conference_id: @conference.short_title), notice: 'Target successfully updated.') else flash[:error] = "Target update failed: #{@target.errors.full_messages.join('. ')}." render :edit end end def destroy if @target.destroy redirect_to(admin_conference_targets_path(conference_id: @conference.short_title), notice: 'Target successfully destroyed.') else redirect_to(admin_conference_targets_path(conference_id: @conference.short_title), error: 'Target was successfully destroyed.' \ "#{@target.errors.full_messages.join('. ')}.") end end private def target_params params.require(:target).permit(:due_date, :target_count, :unit, :conference_id) end end end