summaryrefslogtreecommitdiff
path: root/lib/api/entities/shared_group_with_group.rb
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