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

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

module API
  module Entities
    class SharedGroupWithGroup < Grape::Entity
      expose :shared_with_group_id, as: :group_id
      expose :group_name do |group_link|
        group_link.shared_with_group.name
      end
      expose :group_full_path do |group_link|
        group_link.shared_with_group.full_path
      end
      expose :group_access, as: :group_access_level
      expose :expires_at
    end
  end
end