summaryrefslogtreecommitdiff
path: root/lib/api/entities/templates_list.rb
blob: 8e8aa1bd285b4356bbebfdc670e0f6142f7612c4 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module API
  module Entities
    class TemplatesList < Grape::Entity
      expose :key
      expose :name
    end
  end
end