diff options
author | Angus MacArthur <amacarthur@blackberry.com> | 2013-06-27 17:49:26 -0400 |
---|---|---|
committer | Angus MacArthur <amacarthur@blackberry.com> | 2013-07-08 17:34:00 -0400 |
commit | ea5a006f27cfd3013f94652e0e0f0e63091036ad (patch) | |
tree | af0e150d45b1f9102245595a3a5b14637b5809aa /lib/api/projects.rb | |
parent | 7ebbb6e33f872651c8f92799570d58353a4a08b3 (diff) | |
download | gitlab-ce-ea5a006f27cfd3013f94652e0e0f0e63091036ad.tar.gz |
Additon of apis for fork administration.
Added ability to add and remove the forked from/to relatioinship
between existing repos.
Diffstat (limited to 'lib/api/projects.rb')
-rw-r--r-- | lib/api/projects.rb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb index 6dc051e4ba2..d5709f5cb59 100644 --- a/lib/api/projects.rb +++ b/lib/api/projects.rb @@ -121,6 +121,42 @@ module API end + # Mark this project as forked from another + # + # Parameters: + # id: (required) - The ID of the project being marked as a fork + # forked_from_id: (required) - The ID of the project it was forked from + # Example Request: + # POST /projects/:id/fork/:forked_from_id + post ":id/fork/:forked_from_id" do + authenticated_as_admin! + forked_from_project = find_project(params[:forked_from_id]) + unless forked_from_project.nil? + if user_project.forked_from_project.nil? + user_project.create_forked_project_link(forked_to_project_id: user_project.id, forked_from_project_id: forked_from_project.id) + else + render_api_error!("Project already forked", 409) + end + else + not_found! + end + + end + + # Remove a forked_from relationship + # + # Parameters: + # id: (required) - The ID of the project being marked as a fork + # Example Request: + # DELETE /projects/:id/fork + delete ":id/fork" do + authenticated_as_admin! + unless user_project.forked_project_link.nil? + user_project.forked_project_link.destroy + end + end + + # Get a project team members # # Parameters: |