diff options
author | Jeroen Nijhof <jeroen@jeroennijhof.nl> | 2016-01-11 09:32:35 +0100 |
---|---|---|
committer | Jeroen Nijhof <jeroen@jeroennijhof.nl> | 2016-01-11 09:32:35 +0100 |
commit | 706255b926f21588fcb11f08d1a3781c407900cd (patch) | |
tree | b304932262b48942a6526fdd8464f53212577134 /lib/api/projects.rb | |
parent | e0436005af0d567391031ebbf546877f7f525731 (diff) | |
parent | f394ccd584f7c2a58a172ad4dd501045cb388e9c (diff) | |
download | gitlab-ce-706255b926f21588fcb11f08d1a3781c407900cd.tar.gz |
Merge gitlab.com:gitlab-org/gitlab-ce
Diffstat (limited to 'lib/api/projects.rb')
-rw-r--r-- | lib/api/projects.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb index 0781236cf6d..8b1390e3289 100644 --- a/lib/api/projects.rb +++ b/lib/api/projects.rb @@ -269,7 +269,7 @@ module API # Remove a forked_from relationship # # Parameters: - # id: (required) - The ID of the project being marked as a fork + # id: (required) - The ID of the project being marked as a fork # Example Request: # DELETE /projects/:id/fork delete ":id/fork" do @@ -278,6 +278,16 @@ module API user_project.forked_project_link.destroy end end + + # Upload a file + # + # Parameters: + # id: (required) - The ID of the project + # file: (required) - The file to be uploaded + post ":id/uploads" do + ::Projects::UploadService.new(user_project, params[:file]).execute + end + # search for projects current_user has access to # # Parameters: |