2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
2020-06-23 00:09:42 +05:30
|
|
|
class SharedGroupWithProject < Grape::Entity
|
2020-03-13 15:44:24 +05:30
|
|
|
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
|