Class: ExerciseQueryController

Inherits:
AjaxController show all
Includes:
Mumuki::Laboratory::Controllers::ExerciseSeed, Mumuki::Laboratory::Controllers::NestedInExercise
Defined in:
app/controllers/exercise_query_controller.rb

Instance Method Summary collapse

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

#set_seed!

Methods included from Mumuki::Laboratory::Controllers::NestedInExercise

#set_exercise!

Methods inherited from ApplicationController

#current_immersive_organizations, #current_immersive_path, #current_immersive_path_for, #current_workspace, #immersive_context_wrong?, #login_button, #redirect_to_proper_context!, #redirect_to_usage, #should_choose_organization?, #validate_accessible!, #validate_active_organization!

Methods included from Mumuki::Laboratory::Controllers::ActionRedirector

#redirect_after!, #save_location_before!

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

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

#authorization_minimum_role, #authorization_slug, #authorize_if_private!

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

#organization_name, #set_current_organization!, #visit_organization!

Instance Method Details

#createObject



5
6
7
8
# File 'app/controllers/exercise_query_controller.rb', line 5

def create
  results = @exercise.submit_query! current_user, query_params
  render json: results
end

#query_paramsObject



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

def query_params
  params.permit(:content, :query, cookie: [])
end