mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
10 lines
265 B
Ruby
10 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EmbeddableHostSerializer < ApplicationSerializer
|
|
TO_SERIALIZE = %i[id host allowed_paths class_name category_id]
|
|
|
|
attributes *TO_SERIALIZE
|
|
|
|
TO_SERIALIZE.each { |attr| define_method(attr) { object.public_send(attr) } }
|
|
end
|