This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/app/serializers/wizard_serializer.rb
T
2018-11-15 20:44:19 +01:00

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