diff options
author | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2012-12-21 18:43:46 +0100 |
---|---|---|
committer | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2012-12-21 18:43:46 +0100 |
commit | 931ec399bd16321f5bdd8e745f2f87dfe25a83ac (patch) | |
tree | f501bcbeafd843d5874ae1620bcb72ea6207c2ba /lib/api/entities.rb | |
parent | b510f8c4965b210cc1a583fc15dc09871669e1bf (diff) | |
download | gitlab-ce-931ec399bd16321f5bdd8e745f2f87dfe25a83ac.tar.gz |
Remove the code parameter from the projects API
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 070fbad27ed..92245a9f093 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -18,7 +18,7 @@ module Gitlab end class Project < Grape::Entity - expose :id, :code, :name, :description, :path, :default_branch + expose :id, :name, :description, :path, :default_branch expose :owner, using: Entities::UserBasic expose :private_flag, as: :private expose :issues_enabled, :merge_requests_enabled, :wall_enabled, :wiki_enabled, :created_at |