11 lines
302 B
Ruby
11 lines
302 B
Ruby
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
|