diff options
| author | Vlatka Pavisic | 2017-02-13 17:39:30 +0100 |
|---|---|---|
| committer | Vlatka Pavisic | 2017-02-13 17:39:36 +0100 |
| commit | 49c1de150c9ef38c00247a51b91150efdd5cc3dc (patch) | |
| tree | c9e4832efa0c55dea4889842adf5b407d37d1425 /app/controllers/time_tables_controller.rb | |
| parent | 55468b29bb5b23bfeb8ebe439ed62e5214284a3d (diff) | |
| download | chouette-core-49c1de150c9ef38c00247a51b91150efdd5cc3dc.tar.bz2 | |
Refs #2596 : Replace creation_time with timestamps
Diffstat (limited to 'app/controllers/time_tables_controller.rb')
| -rw-r--r-- | app/controllers/time_tables_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/time_tables_controller.rb b/app/controllers/time_tables_controller.rb index 7f9a95789..bdde5d3ab 100644 --- a/app/controllers/time_tables_controller.rb +++ b/app/controllers/time_tables_controller.rb @@ -117,6 +117,6 @@ class TimeTablesController < ChouetteController private def time_table_params - params.require(:time_table).permit( :objectid, :object_version, :creation_time, :creator_id, :calendar_id, :version, :comment, :int_day_types, :monday, :tuesday, :wednesday, :thursday, :friday, :saturday, :sunday, :start_date, :end_date, { :dates_attributes => [:date, :in_out, :id, :_destroy] }, { :periods_attributes => [:period_start, :period_end, :_destroy, :id] }, :tag_list, :tag_search ) + params.require(:time_table).permit( :objectid, :object_version, :creator_id, :calendar_id, :version, :comment, :int_day_types, :monday, :tuesday, :wednesday, :thursday, :friday, :saturday, :sunday, :start_date, :end_date, { :dates_attributes => [:date, :in_out, :id, :_destroy] }, { :periods_attributes => [:period_start, :period_end, :_destroy, :id] }, :tag_list, :tag_search ) end end |
