Chatwoot/app/controllers/public_controller.rb
Sojan Jose a5bc81b304
chore: Suppress the unnecessary CSRF warning (#2606)
Suppress the unnecessary CSRF warning
2021-07-14 18:40:24 +05:30

5 lines
249 B
Ruby

# TODO: we should switch to ActionController::API for the base classes
# One of the specs is failing when I tried doing that, lets revisit in future
class PublicController < ActionController::Base
skip_before_action :verify_authenticity_token
end