Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • G gitlabhq1
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 21
    • Issues 21
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 12
    • Merge requests 12
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • gpt
  • large_projects
  • gitlabhq1
  • Issues
  • #3832

Closed
Open
Created May 03, 2013 by Administrator@rootOwner

[API] Project Hooks Deletion is broken

Created by: valeriomazzeo

it can't never get the hook_id parameter

Deletes project hook. This is an idempotent function.

  #
  # Parameters:
  #   id (required) - The ID of a project
  #   hook_id (required) - The ID of hook to delete
  # Example Request:
  #   DELETE /projects/:id/hooks/:hook_id
  delete ":id/hooks" do
    authorize! :admin_project, user_project
    required_attributes! [:hook_id]

    begin
      @hook = ProjectHook.find(params[:hook_id])
      @hook.destroy
    rescue
      # ProjectHook can raise Error if hook_id not found
    end
  end
Assignee
Assign to
Time tracking