aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/routes_controller.rb
diff options
context:
space:
mode:
authorVlatka Pavisic2017-02-13 17:39:30 +0100
committerVlatka Pavisic2017-02-13 17:39:36 +0100
commit49c1de150c9ef38c00247a51b91150efdd5cc3dc (patch)
treec9e4832efa0c55dea4889842adf5b407d37d1425 /app/controllers/routes_controller.rb
parent55468b29bb5b23bfeb8ebe439ed62e5214284a3d (diff)
downloadchouette-core-49c1de150c9ef38c00247a51b91150efdd5cc3dc.tar.bz2
Refs #2596 : Replace creation_time with timestamps
Diffstat (limited to 'app/controllers/routes_controller.rb')
-rw-r--r--app/controllers/routes_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/routes_controller.rb b/app/controllers/routes_controller.rb
index 59bd22f56..4ee235cd2 100644
--- a/app/controllers/routes_controller.rb
+++ b/app/controllers/routes_controller.rb
@@ -89,7 +89,7 @@ class RoutesController < ChouetteController
private
def route_params
- params.require(:route).permit( :line_id, :objectid, :object_version, :creation_time, :creator_id, :name, :comment, :opposite_route_id, :published_name, :number, :direction, :wayback, { stop_points_attributes: [ :id, :_destroy, :position, :stop_area_id, :for_boarding, :for_alighting ] } )
+ params.require(:route).permit( :line_id, :objectid, :object_version, :creator_id, :name, :comment, :opposite_route_id, :published_name, :number, :direction, :wayback, { stop_points_attributes: [ :id, :_destroy, :position, :stop_area_id, :for_boarding, :for_alighting ] } )
end
end