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

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

class ProjectEntity < Grape::Entity
  include RequestAwareEntity

  expose :id
  expose :name

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

  expose :full_name do |project|
    project.full_name
  end
end