diff options
author | Nihad Abbasov <narkoz.2008@gmail.com> | 2012-06-27 05:51:39 -0700 |
---|---|---|
committer | Nihad Abbasov <narkoz.2008@gmail.com> | 2012-06-28 03:44:20 -0700 |
commit | 7b5c3cc8be40ee161ae89a06bba6229da1032a0c (patch) | |
tree | 46e82de44b1061621357f24c05515327f2795a95 /lib/api.rb | |
parent | 4ad91d3c1144c406e50c7b33bae684bd6837faf8 (diff) | |
download | gitlab-ce-7b5c3cc8be40ee161ae89a06bba6229da1032a0c.tar.gz |
add projects API
Diffstat (limited to 'lib/api.rb')
-rw-r--r-- | lib/api.rb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/api.rb b/lib/api.rb index 9e38bc496fe..ab5b02e0556 100644 --- a/lib/api.rb +++ b/lib/api.rb @@ -6,6 +6,7 @@ module Gitlab format :json helpers APIHelpers + # Users API resource :users do before { authenticate! } @@ -27,5 +28,34 @@ module Gitlab authenticate! present @current_user, :with => Entities::User end + + # Projects API + resource :projects do + before { authenticate! } + + # GET /projects + get do + @projects = current_user.projects + present @projects, :with => Entities::Project + end + + # GET /projects/:id + get ":id" do + @project = Project.find_by_code(params[:id]) + present @project, :with => Entities::Project + end + + # GET /projects/:id/repository/branches + get ":id/repository/branches" do + @project = Project.find_by_code(params[:id]) + present @project.repo.heads.sort_by(&:name), :with => Entities::ProjectRepositoryBranches + end + + # GET /projects/:id/repository/tags + get ":id/repository/tags" do + @project = Project.find_by_code(params[:id]) + present @project.repo.tags.sort_by(&:name).reverse, :with => Entities::ProjectRepositoryTags + end + end end end |