clair_app/app/models/external_link.rb
Nicolas Bally c2f8ec2efb initial
2020-10-10 00:28:38 +02:00

17 lines
193 B
Ruby

class ExternalLink < ApplicationRecord
validates :url, :presence => true
def cible_name
"Lien externe : #{self.url}"
end
def cible_url(lang)
self.url
end
end