1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/API

10 lines
160 B
Text
Raw Normal View History

Overwrite method to read the current state
class MyClass
include AASM
def aasm_read_state
# retrieve the current state manually
end
end