aboutsummaryrefslogtreecommitdiffstats
path: root/app/models
diff options
context:
space:
mode:
authorcedricnjanga2017-11-27 12:09:53 +0100
committercedricnjanga2017-11-27 12:09:53 +0100
commit7b3e4f37f2bffce7da4b5eec01f0b106edd99af1 (patch)
treef8afccdc9e7d17c7d9f19f41148ba615f2e176d3 /app/models
parent80365ce4f88b1d25a3a313982c6a0cdaa5e8dff5 (diff)
downloadchouette-core-7b3e4f37f2bffce7da4b5eec01f0b106edd99af1.tar.bz2
Refs #5030 Fix missing translation for UnactivatedStopPoint ComplianceControl
Diffstat (limited to 'app/models')
-rw-r--r--app/models/compliance_control.rb2
-rw-r--r--app/models/route_control/unactivated_stop_point.rb (renamed from app/models/route_control/unactivated_stop_points.rb)2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/models/compliance_control.rb b/app/models/compliance_control.rb
index 146c4e838..65e22643d 100644
--- a/app/models/compliance_control.rb
+++ b/app/models/compliance_control.rb
@@ -83,7 +83,7 @@ require_dependency 'route_control/omnibus_journey_pattern'
require_dependency 'route_control/opposite_route_terminus'
require_dependency 'route_control/opposite_route'
require_dependency 'route_control/stop_points_in_journey_pattern'
-require_dependency 'route_control/unactivated_stop_points'
+require_dependency 'route_control/unactivated_stop_point'
require_dependency 'route_control/zdl_stop_area'
require_dependency 'routing_constraint_zone_control/maximum_length'
require_dependency 'routing_constraint_zone_control/minimum_length'
diff --git a/app/models/route_control/unactivated_stop_points.rb b/app/models/route_control/unactivated_stop_point.rb
index a903fff53..3066bb523 100644
--- a/app/models/route_control/unactivated_stop_points.rb
+++ b/app/models/route_control/unactivated_stop_point.rb
@@ -1,5 +1,5 @@
module RouteControl
- class UnactivatedStopPoints < ComplianceControl
+ class UnactivatedStopPoint < ComplianceControl
def self.default_code; "3-Route-10" end
end