diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-13 00:08:46 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-13 00:08:46 +0000 |
commit | 47d1f417f03aca055b2ba49c32bb6fb01c459831 (patch) | |
tree | 200f05f28369cbf3a34abcb4a3c388558268b86f /lib/api/entities/templates_list.rb | |
parent | 006e89697dd5165f355afc20fc6bb0cdfa7b381a (diff) | |
download | gitlab-ce-47d1f417f03aca055b2ba49c32bb6fb01c459831.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/api/entities/templates_list.rb')
-rw-r--r-- | lib/api/entities/templates_list.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/api/entities/templates_list.rb b/lib/api/entities/templates_list.rb new file mode 100644 index 00000000000..8e8aa1bd285 --- /dev/null +++ b/lib/api/entities/templates_list.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +module API + module Entities + class TemplatesList < Grape::Entity + expose :key + expose :name + end + end +end |