diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2019-01-08 20:59:08 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2019-01-31 13:49:52 +0100 |
commit | ad25e14844eeb0db92f69e637eb20ee8a1328659 (patch) | |
tree | d57889550c0623d251c068c14e21c6f055f101a6 /lib/api/labels.rb | |
parent | 0ce33f6b4f30ddab14025adb16138f1589d32b6f (diff) | |
download | gitlab-ce-ad25e14844eeb0db92f69e637eb20ee8a1328659.tar.gz |
Simplify label helper and correct version
Diffstat (limited to 'lib/api/labels.rb')
-rw-r--r-- | lib/api/labels.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/labels.rb b/lib/api/labels.rb index d464754411a..d729d3ee625 100644 --- a/lib/api/labels.rb +++ b/lib/api/labels.rb @@ -2,8 +2,8 @@ module API class Labels < Grape::API - include ::API::Helpers::LabelHelpers include PaginationParams + helpers ::API::Helpers::LabelHelpers before { authenticate! } |