Class: Storytime::Link
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Storytime::Link
- Defined in:
- app/models/storytime/link.rb
Instance Method Summary collapse
Instance Method Details
#ensure_protocol_for_external_links ⇒ Object
16 17 18 19 20 |
# File 'app/models/storytime/link.rb', line 16 def ensure_protocol_for_external_links if linkable.blank? && url.present? && !url.include?("://") self.url = "http://#{url}" end end |