chore: delete github hook

This commit is contained in:
Muhsin Keloth
2025-04-21 20:04:39 +05:30
parent 1df0159f65
commit bf78dde488
3 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
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