| 1 | class AudioFileKarokoweStatus < ApplicationRecord |
| 2 | belongs_to :audio_file, optional: true |
| 3 | |
| 4 | # Enum, enum everywhere... |
| 5 | enum status: [ |
| 6 | :pending, # Fresly uploaded file. |
| 7 | :processing, # Sidekiq is doing its business. |
| 8 | :done, # Done processing file. |
| 9 | :cancelled, # Cancelled processing file. |
| 10 | :no_results, # The file has been processed before but the result files have been deleted. |
| 11 | ] |
| 12 | end |