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