diff --git a/app/models/recruitment_job.rb b/app/models/recruitment_job.rb index f680c72..a090052 100644 --- a/app/models/recruitment_job.rb +++ b/app/models/recruitment_job.rb @@ -50,7 +50,7 @@ class RecruitmentJob scope :jobs, ->{where(:post_type => "type1")} scope :internships, ->{where(:post_type => "type2")} scope :exchanges, ->{where(:post_type => "type3")} - scope :excluded_expired, ->{where(:expiry_date.gte => Time.now)} + scope :excluded_expired, ->{any_of({:expiry_date.gte => Time.now}, {:expiry_date => nil})} def get_category RecruitmentCategory.find(self.category).job_category rescue ""