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 def load_additional_payload_data @license_statuses = LicenseStatus::ALL @well_types = WellType::ALL end end