Chatwoot/app/controllers/api/v1/accounts/webhooks_controller.rb

33 lines
627 B
Ruby
Raw Normal View History

class Api::V1::Accounts::WebhooksController < Api::V1::Accounts::BaseController
2020-02-14 17:49:17 +00:00
before_action :check_authorization
before_action :fetch_webhook, only: [:update, :destroy]
def index
@webhooks = Current.account.webhooks
2020-02-14 17:49:17 +00:00
end
def create
@webhook = Current.account.webhooks.new(webhook_params)
2020-02-14 17:49:17 +00:00
@webhook.save!
end
def update
@webhook.update!(webhook_params)
end
def destroy
@webhook.destroy
head :ok
end
private
def webhook_params
params.require(:webhook).permit(:inbox_id, :url)
2020-02-14 17:49:17 +00:00
end
def fetch_webhook
@webhook = Current.account.webhooks.find(params[:id])
2020-02-14 17:49:17 +00:00
end
end