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: ee28c7c19c10de60ee0d41593b2fdc9f93303581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Integrations
  class ProjectEntity < Grape::Entity
    include RequestAwareEntity

    expose :avatar_url
    expose :full_name
    expose :name

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