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

project_entity.rb « integrations « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c091133eb398c5fb14db593b5dcfc3a3f5817288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Integrations
  class ProjectEntity < Grape::Entity
    include RequestAwareEntity

    expose :id
    expose :avatar_url
    expose :full_name
    expose :name

    expose :full_path do |project|
      project_path(project)
    end
  end
end