Class: ExercisesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/exercises_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#login_button, #redirect_to_main_organization!, #should_choose_organization?, #should_redirect_to_main_organization?, #validate_accessible!, #validate_used_here!

Methods included from Mumuki::Laboratory::Controllers::DynamicErrors

#forbidden, #gone, #internal_server_error, #not_found, #unauthorized

Methods included from Mumuki::Laboratory::Controllers::Messages

#has_messages?, #messages_count

Methods included from Mumuki::Laboratory::Controllers::Authorization

#authorization_slug, #authorize_if_private!, #from_sessions?

Methods included from Mumuki::Laboratory::Controllers::CurrentOrganization

#organization_name, #set_current_organization!, #visit_organization!

Instance Method Details

#showObject



8
9
10
# File 'app/controllers/exercises_controller.rb', line 8

def show
  @solution = @exercise.new_solution if current_user?
end

#show_by_slugObject



12
13
14
# File 'app/controllers/exercises_controller.rb', line 12

def show_by_slug
  redirect_to Guide.by_slug_parts!(params).exercises.find_by!(bibliotheca_id: params[:bibliotheca_id])
end