blob: b6c1f36302b5b6f54fb22877ef311dcacdb21b3f (
plain)
1
2
3
4
5
6
7
8
  | 
module LineControl
  class Route < ComplianceControl
    def self.default_code; "3-Line-1" end
    def prerequisite; I18n.t("compliance_controls.#{self.class.name.underscore}.prerequisite") end
  end
end
  |