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

module API
  module Entities
    class Template < Grape::Entity
      expose :name, :content
    end
  end
end