mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
143eedcd65
closes #418 closes #427
19 lines
283 B
Ruby
19 lines
283 B
Ruby
class TimestampsExample
|
|
include AASM
|
|
|
|
attr_accessor :opened_at
|
|
attr_reader :closed_at
|
|
|
|
aasm timestamps: true do
|
|
state :opened
|
|
state :closed
|
|
|
|
event :open do
|
|
transitions to: :opened
|
|
end
|
|
|
|
event :close do
|
|
transitions to: :closed
|
|
end
|
|
end
|
|
end
|