debian-mirror-gitlab/lib/api/entities/group_detail.rb

39 lines
1.2 KiB
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class GroupDetail < Group
2020-06-23 00:09:42 +05:30
expose :shared_with_groups do |group, options|
SharedGroupWithGroup.represent(group.shared_with_group_links.public_or_visible_to_user(group, options[:current_user]))
end
2020-03-13 15:44:24 +05:30
expose :runners_token, if: lambda { |group, options| options[:user_can_admin_group] }
2020-07-28 23:09:34 +05:30
2020-03-13 15:44:24 +05:30
expose :projects, using: Entities::Project do |group, options|
projects = GroupProjectsFinder.new(
group: group,
current_user: options[:current_user],
options: { only_owned: true, limit: projects_limit }
).execute
Entities::Project.prepare_relation(projects)
end
expose :shared_projects, using: Entities::Project do |group, options|
projects = GroupProjectsFinder.new(
group: group,
current_user: options[:current_user],
options: { only_shared: true, limit: projects_limit }
).execute
Entities::Project.prepare_relation(projects)
end
def projects_limit
2021-09-04 01:27:46 +05:30
GroupProjectsFinder::DEFAULT_PROJECTS_LIMIT
2020-03-13 15:44:24 +05:30
end
end
end
end
2021-06-08 01:23:25 +05:30
API::Entities::GroupDetail.prepend_mod_with('API::Entities::GroupDetail')