1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/spec/models/timestamps_with_named_machine_example.rb
2021-04-23 14:29:09 +05:30

13 lines
208 B
Ruby

class TimestampsWithNamedMachineExample
include AASM
attr_accessor :opened_at
aasm :my_state, timestamps: true do
state :opened
event :open do
transitions to: :opened
end
end
end