class ApplicationController < ActionController::Base # Prevent CSRF attacks by raising an exception. # For APIs, you may want to use :null_session instead. protect_from_forgery with: :null_session before_filter :load_additional_payload_data rescue_from StandardError, with: :return_server_error def load_additional_payload_data @license_statuses = LicenseStatus::ALL @well_types = WellType::ALL end private def return_server_error render nothing: true, status: :internal_server_error end end