Class: Storytime::Link

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/storytime/link.rb

Instance Method Summary collapse

Instance Method Details



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