summaryrefslogtreecommitdiff
path: root/app/controllers/chat_ops_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/chat_ops_controller.rb')
-rw-r--r--app/controllers/chat_ops_controller.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/controllers/chat_ops_controller.rb b/app/controllers/chat_ops_controller.rb
new file mode 100644
index 00000000000..2754de5e710
--- /dev/null
+++ b/app/controllers/chat_ops_controller.rb
@@ -0,0 +1,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