mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 10:35:36 +08:00
9 lines
202 B
Ruby
Vendored
9 lines
202 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class GroupUserAssignedSerializer < BasicUserSerializer
|
|
attributes :assignments_count, :username_lower
|
|
|
|
def include_assignments_count
|
|
object.can_assign?
|
|
end
|
|
end
|