mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
41 lines
889 B
Ruby
41 lines
889 B
Ruby
class Api::V1::Accounts::Integrations::HooksController < Api::V1::Accounts::BaseController
|
|
before_action :fetch_hook, except: [:create]
|
|
before_action :check_authorization
|
|
|
|
def create
|
|
@hook = Current.account.hooks.create!(permitted_params)
|
|
end
|
|
|
|
def update
|
|
@hook.update!(permitted_params.slice(:status, :settings))
|
|
end
|
|
|
|
def process_event
|
|
response = @hook.process_event(params[:event])
|
|
if response[:error]
|
|
render json: { error: response[:error] }, status: :unprocessable_entity
|
|
else
|
|
render json: { message: response[:message] }
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@hook.destroy!
|
|
head :ok
|
|
end
|
|
|
|
private
|
|
|
|
def fetch_hook
|
|
@hook = Current.account.hooks.find(params[:id])
|
|
end
|
|
|
|
def check_authorization
|
|
authorize(:hook)
|
|
end
|
|
|
|
def permitted_params
|
|
params.require(:hook).permit(:app_id, :inbox_id, :status, settings: {})
|
|
end
|
|
end
|