recruitment/app/models/employee_job_application.rb

12 lines
202 B
Ruby
Raw Normal View History

2018-01-01 13:52:15 +00:00
class EmployeeJobApplication
include Mongoid::Document
include Mongoid::Timestamps
field :job
belongs_to :employee_profile
def get_job
RecruitmentJob.find(self.job) rescue nil
end
end