Sha256: 31ef501400a87845b7ee18b7aa8765f6c8183baf5beef08c0e2e4a4276f8a63b
Contents?: true
Size: 1.36 KB
Versions: 41
Compression:
Stored size: 1.36 KB
Contents
class ExercisesController < ApplicationController include Mumuki::Laboratory::Controllers::Content include Mumuki::Laboratory::Controllers::ExerciseSeed include Mumuki::Laboratory::Controllers::ImmersiveNavigation before_action :set_guide!, only: :show before_action :set_assignment!, only: :show, if: :current_user? before_action :validate_accessible!, only: :show before_action :start!, only: :show def show @solution = @exercise.new_solution if current_user? enable_embedded_rendering end def show_transparently redirect_to Exercise.find_transparently!(params) end private def subject @exercise ||= Exercise.find_by(id: params[:id]) end def accessible_subject subject.navigable_parent end def start! @exercise.navigable_parent.start! current_user end def set_assignment! @assignment = @exercise.assignment_for(current_user) @files = @assignment.files @current_content = @assignment.current_content @default_content = @assignment.default_content end def set_guide! raise Mumuki::Domain::NotFoundError if @exercise.nil? @guide = @exercise.guide end def exercise_params params.require(:exercise). permit(:name, :description, :locale, :test, :extra, :language_id, :hint, :tag_list, :guide_id, :number, :layout, :expectations_yaml) end end
Version data entries
41 entries across 41 versions & 1 rubygems