2018-12-26 00:38:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module DomainNormalizable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2019-08-08 17:04:19 -04:00
|
|
|
before_save :normalize_domain
|
2018-12-26 00:38:42 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def normalize_domain
|
2019-02-02 21:59:51 -05:00
|
|
|
self.domain = TagManager.instance.normalize_domain(domain&.strip)
|
2018-12-26 00:38:42 -05:00
|
|
|
end
|
|
|
|
end
|