discourse/app/serializers/topic_status_update_seriali...

13 lines
290 B
Ruby

class TopicStatusUpdateSerializer < ApplicationSerializer
attributes :id,
:execute_at,
:duration,
:based_on_last_post,
:status_type,
:category_id
def status_type
TopicStatusUpdate.types[object.status_type]
end
end