This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/serializers/wizard_serializer.rb

14 lines
237 B
Ruby

class WizardSerializer < ApplicationSerializer
attributes :start, :completed
has_many :steps, serializer: WizardStepSerializer, embed: :objects
def start
object.start.id
end
def completed
object.completed?
end
end