Welcome to mirror list, hosted at ThFree Co, Russian Federation.

author_entity.rb « evidences « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9023c64dad205cb58cf7fcfd1d6a5c7079ffb76a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Evidences
  class AuthorEntity < Grape::Entity
    expose :id
    expose :name
    expose :email
  end
end