mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 02:56:26 -05:00
9 lines
180 B
Ruby
9 lines
180 B
Ruby
class WizardSerializer < ApplicationSerializer
|
|
attributes :start
|
|
|
|
has_many :steps, serializer: WizardStepSerializer, embed: :objects
|
|
|
|
def start
|
|
object.start.id
|
|
end
|
|
end
|