gitlab-org--gitlab-foss/app/serializers/evidences/project_entity.rb

11 lines
175 B
Ruby

# frozen_string_literal: true
module Evidences
class ProjectEntity < Grape::Entity
expose :id
expose :name
expose :description
expose :created_at
end
end