mirror of
https://github.com/discourse/discourse.git
synced 2024-12-15 06:53:40 +08:00
8 lines
155 B
Ruby
8 lines
155 B
Ruby
class BadgeGroupingSerializer < ApplicationSerializer
|
|
attributes :id, :name, :description, :position, :system
|
|
|
|
def system
|
|
object.system?
|
|
end
|
|
end
|