aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/calendar.rb
diff options
context:
space:
mode:
authorZog2018-01-24 16:56:16 +0100
committercedricnjanga2018-02-07 07:24:32 -0800
commit37f77f03c15269a82bdd487fd36458f341536baa (patch)
tree4fc3220adf54eb96d406439135b6f04f9f42340c /app/models/calendar.rb
parent53009774ec18387a30689a25ae286ba76e0e15d8 (diff)
downloadchouette-core-37f77f03c15269a82bdd487fd36458f341536baa.tar.bz2
Refs #5682 @3h; Use same UI as for timetables
Diffstat (limited to 'app/models/calendar.rb')
-rw-r--r--app/models/calendar.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/models/calendar.rb b/app/models/calendar.rb
index 50faa9bde..84b569ab4 100644
--- a/app/models/calendar.rb
+++ b/app/models/calendar.rb
@@ -50,7 +50,6 @@ class Calendar < ActiveRecord::Base
tt.periods << Chouette::TimeTablePeriod.new(period_start: p.begin, period_end: p.end)
end
tt.int_day_types = self.int_day_types
-<<<<<<< HEAD
end
end
@@ -88,8 +87,6 @@ class Calendar < ActiveRecord::Base
def all_dates
(dates + excluded_dates).sort.each_with_index.map do |d, i|
OpenStruct.new(id: i, date: d, in_out: include_in_dates?(d))
-=======
->>>>>>> Refs #5682; Add application_days field to calendars
end
end