mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			647 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			647 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
class Api::V1::Accounts::WebhooksController < Api::V1::Accounts::BaseController
 | 
						|
  before_action :check_authorization
 | 
						|
  before_action :fetch_webhook, only: [:update, :destroy]
 | 
						|
 | 
						|
  def index
 | 
						|
    @webhooks = Current.account.webhooks
 | 
						|
  end
 | 
						|
 | 
						|
  def create
 | 
						|
    @webhook = Current.account.webhooks.new(webhook_params)
 | 
						|
    @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, subscriptions: [])
 | 
						|
  end
 | 
						|
 | 
						|
  def fetch_webhook
 | 
						|
    @webhook = Current.account.webhooks.find(params[:id])
 | 
						|
  end
 | 
						|
end
 |