提交 a9921e9d 编写于 作者: A Alfredo Sumaran

Expose number_projects and number_users for groups endpoint

上级 d15521c7
class GroupEntity < Grape::Entity
include ActionView::Helpers::NumberHelper
include RequestAwareEntity
include MembersHelper
......@@ -30,4 +31,12 @@ class GroupEntity < Grape::Entity
expose :has_subgroups do |group|
group.children.any?
end
expose :number_projects do |group|
number_with_delimiter(group.projects.non_archived.count)
end
expose :number_users do |group|
number_with_delimiter(group.users.count)
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册