-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse.rb
49 lines (38 loc) · 1.09 KB
/
course.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class Course < ActiveRecord::Base
validates_presence_of :name, :description, :price, :start_at, :stop_at, :location, :maximum_students, :short_description, :audience_id
belongs_to :audience
has_many :sections
has_many :questions, :order => "created_at asc"
has_many :follow_ups
has_many :registrations, :through => :sections
accepts_nested_attributes_for :questions, :reject_if => :all_blank
accepts_nested_attributes_for :follow_ups, :reject_if => :all_blank
acts_as_list
def self.by_position
order("courses.position asc")
end
def self.unscheduled
where("courses.id not in (select sections.course_id from sections where sections.ends_on >= ?)", Date.today)
end
def self.only_public
where(:public => true)
end
def questions_with_blank
questions + [questions.new]
end
def follow_ups_with_blank
follow_ups + [follow_ups.new]
end
def active?
active_section.present?
end
def active_section
sections.active[0]
end
def active_date_range
active_section.try(:date_range)
end
def to_param
"#{id}-#{name.parameterize}"
end
end