aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/route_control/duplicates.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/route_control/duplicates.rb')
-rw-r--r--app/models/route_control/duplicates.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/models/route_control/duplicates.rb b/app/models/route_control/duplicates.rb
new file mode 100644
index 000000000..803ac063e
--- /dev/null
+++ b/app/models/route_control/duplicates.rb
@@ -0,0 +1,14 @@
+module RouteControl
+ class Duplicates < ComplianceControl
+
+ @@default_criticity = :warning
+ @@default_code = "3-Route-4"
+
+ after_initialize do
+ self.name = self.class.name
+ self.code = @@default_code
+ self.criticity = @@default_criticity
+ end
+
+ end
+end