mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:18:06 +08:00
10 lines
188 B
Ruby
10 lines
188 B
Ruby
class DirectorySerializer < ApplicationSerializer
|
|
attributes :id
|
|
has_many :directory_items, serializer: DirectoryItemSerializer, embed: :objects
|
|
|
|
def id
|
|
object.filter
|
|
end
|
|
|
|
end
|