Sha256: 974bfb91ed70f84cf13536e3753f124b3cff7baf0899f9fe9b8a842c0b9a09a5
Contents?: true
Size: 391 Bytes
Versions: 48
Compression:
Stored size: 391 Bytes
Contents
class UserExportFileStateMachine include Statesman::Machine state :pending, initial: true state :started state :completed state :failed transition from: :pending, to: :started transition from: :started, to: [:completed, :failed] after_transition(from: :pending, to: :started) do |user_export_file| user_export_file.update_column(:executed_at, Time.zone.now) end end
Version data entries
48 entries across 46 versions & 2 rubygems