16 lines
265 B
Ruby
16 lines
265 B
Ruby
|
# 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
|