summaryrefslogtreecommitdiff
path: root/lib/api/entities/shared_group_with_project.rb
blob: d91bee31b04e93f04bf9409944a10d27856be08e (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 SharedGroupWithProject < Grape::Entity
      expose :group_id
      expose :group_name do |group_link, options|
        group_link.group.name
      end
      expose :group_full_path do |group_link, options|
        group_link.group.full_path
      end
      expose :group_access, as: :group_access_level
      expose :expires_at
    end
  end
end