gitlab-org--gitlab-foss/lib/api/entities/template.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
142 B
Ruby
Raw Permalink Normal View History

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