Class: ExercisesController

Inherits:
ApplicationController show all
Includes:
Mumuki::Laboratory::Controllers::Content, Mumuki::Laboratory::Controllers::ExerciseSeed
Defined in:
app/controllers/exercises_controller.rb

Instance Method Summary collapse

Methods included from Mumuki::Laboratory::Controllers::ExerciseSeed

#set_seed!

Methods included from Mumuki::Laboratory::Controllers::Content

#validate_used_here!

Methods inherited from ApplicationController

#current_workspace, #login_button, #redirect_to_main_organization!, #redirect_to_usage, #should_choose_organization?, #should_redirect_to_main_organization?, #validate_accessible!, #validate_active_organization!

Methods included from Mumuki::Laboratory::Controllers::IncognitoMode

#current_incognito_user?, #current_logged_user?, #current_user, #current_user?, #incognito_mode_enabled?

Methods included from Mumuki::Laboratory::Controllers::EmbeddedMode

#embedded_mode?, #enable_embedded_rendering, #standalone_mode?

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

#bad_record, #blocked_forum, #disabled, #disabled_organization, #forbidden, #gone, #internal_server_error, #not_found, #render_error, #unauthorized, #unprepared_organization

Methods included from Mumuki::Laboratory::Controllers::Notifications

#has_notifications?, #notifications_count, #user_notifications_path

Methods included from Mumuki::Laboratory::Controllers::Disabling

#ensure_user_enabled!

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

#authorization_slug, #authorize_if_private!

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

#organization_name, #set_current_organization!, #visit_organization!

Instance Method Details

#showObject



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

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

#show_transparentlyObject



15
16
17
# File 'app/controllers/exercises_controller.rb', line 15

def show_transparently
  redirect_to Exercise.find_transparently!(params)
end