class CallbacksController < ApplicationController skip_before_action :require_login skip_after_action :verify_authorized, except: :index skip_after_action :verify_policy_scoped, only: :index skip_before_action :verify_authenticity_token def create render plain: params.inspect end end