crowdAI/crowdai

View on GitHub
app/models/participant_clef_task.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ParticipantClefTask < ApplicationRecord
  belongs_to :participant
  belongs_to :clef_task

  mount_uploader :eua_file, ParticipantEuaUploader
  validates :eua_file, file_size: { less_than: 10.megabytes }

  def registered?
    self.status_cd === 'registered'
  end

end