| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | object @calendar
attributes :id
node do |tt|
  {
    comment: tt.name,
    time_table_bounding: tt.presenter.time_table_bounding,
    day_types: %w(monday tuesday wednesday thursday friday saturday sunday).select{ |d| tt.send(d) }.map{ |d| tt.human_attribute_name(d).first(2)}.join(''),
    current_month: tt.month_inspect(Date.today),
    periode_range: month_periode_enum(3),
    current_periode_range: Date.today.beginning_of_month,
    short_id: tt.object_id,
  }
end
child(:periods, object_root: false, root: :time_table_periods) do
  attributes :id, :period_start, :period_end
end
child(:all_dates, object_root: false, root: :time_table_dates) do
  attributes :id, :date, :in_out
end
 |