Files
old-holivud2/app/controllers/callbacks_controller.rb

11 lines
302 B
Ruby
Raw Normal View History

2020-08-06 16:57:39 +00:00
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