class HelloWorldChatopController < ApplicationController include ::Chatops::Controller # The default chatops RPC prefix. Clients may replace this. chatops_namespace :hello_world skip_before_action :verify_authenticity_token chatop :classic, /classic/, "classic - The classic hello world" do jsonrpc_success "Hello World!" end chatop :boomtown, /boomtown/, "boomtown - Returns an error" do jsonrpc_failure "Whoops" end end