debian-mirror-gitlab/app/serializers/group_link/group_group_link_entity.rb
2023-03-17 16:20:25 +05:30

21 lines
488 B
Ruby

# frozen_string_literal: true
module GroupLink
class GroupGroupLinkEntity < GroupLink::GroupLinkEntity
include RequestAwareEntity
expose :source do |group_link|
GroupEntity.represent(group_link.shared_from, only: [:id, :full_name, :web_url])
end
private
def can_admin_group_link?(group_link, options)
can?(current_user, admin_permission_name, group_link.shared_from)
end
def admin_permission_name
:admin_group_member
end
end
end