Files
chatwoot/app/controllers/api/v1/accounts/integrations/github_controller.rb
2025-04-21 20:04:39 +05:30

13 lines
308 B
Ruby

class Api::V1::Accounts::Integrations::GithubController < Api::V1::Accounts::BaseController
before_action :fetch_hook, only: [:destroy]
def destroy
@hook.destroy!
head :ok
end
def fetch_hook
@hook = Integrations::Hook.where(account: Current.account).find_by(app_id: 'github')
end
end