diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-17 16:23:44 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-17 16:23:44 -0800 |
commit | 24d939afb9816f3de2ca247de82f96ca32de3612 (patch) | |
tree | c3474d39689cb30e0b52e4fbe0e33d602f108d47 /lib/api/entities.rb | |
parent | 417975ae2f0d5d87915aa448184494e0e8370edb (diff) | |
download | gitlab-ce-24d939afb9816f3de2ca247de82f96ca32de3612.tar.gz |
Remove Group#owner_id from API since it is not used any more
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 8d0664386b4..7572104fc16 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -65,7 +65,7 @@ module API end class Group < Grape::Entity - expose :id, :name, :path, :owner_id, :description + expose :id, :name, :path, :description end class GroupDetail < Group |