Files
old-holivud2/app/models/casting_call.rb
Senad Uka da8e187430 Cast me
2020-07-15 11:57:21 +02:00

19 lines
284 B
Ruby

class CastingCall < ApplicationRecord
belongs_to :project
has_many :casting_call_interviews, dependent: :destroy
has_secure_token
def status
if cancelled?
"Cancelled"
else
"Active"
end
end
def cancelled?
self.cancelled_at.present?
end
end