summaryrefslogtreecommitdiff
path: root/app/controllers/chat_ops_controller.rb
blob: 2754de5e71050647f091b855784d1118a9341844 (plain)
1
2
3
4
5
6
7
8
9
10
class ChatOpsController < ApplicationController
  respond_to :json

  skip_before_action :verify_authenticity_token
  skip_before_action :authenticate_user!

  def trigger
    render json: { ok: true }
  end
end