mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
9 lines
142 B
Ruby
9 lines
142 B
Ruby
module DisableHtml5Validation
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
def auto_html5_validation
|
|
false
|
|
end
|
|
end
|
|
end
|