diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2016-10-18 11:19:35 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2016-10-18 11:19:35 +0200 |
commit | 1b3b8fa872fad1f0002f79addca95916a63d44a4 (patch) | |
tree | 8235d6b5b25f9162c4f913a3cff894cbfe620a58 /lib/api/entities.rb | |
parent | fbeaa7518d8cf86ad62e94e9bc86ffe63715dffd (diff) | |
download | gitlab-ce-expose-label-id.tar.gz |
API: Expose label IDexpose-label-id
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 feaa0c213bf..c1dbd0364c4 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -433,7 +433,7 @@ module API end class LabelBasic < Grape::Entity - expose :name, :color, :description + expose :id, :name, :color, :description end class Label < LabelBasic |