New step to choose emoji set

This commit is contained in:
Robin Ward
2016-09-21 11:22:46 -04:00
parent 8f36f95180
commit 2a0443445b
8 changed files with 89 additions and 2 deletions

View File

@ -1,13 +1,14 @@
class Wizard
class Choice
attr_reader :id, :label, :icon, :data
attr_reader :id, :label, :icon, :data, :extra_label
attr_accessor :field
def initialize(id, opts)
@id = id
@data = opts[:data]
@label = opts[:label]
@extra_label = opts[:extra_label]
@icon = opts[:icon]
end
end