jfn_app/app/models/cible_url.rb
Nicolas Bally 0d62fbe429 initial
2011-12-29 11:06:37 +01:00

12 lines
174 B
Ruby

# -*- encoding : utf-8 -*-
class CibleUrl < ActiveRecord::Base
validates :url, :presence => true
def cible_name
"A changer"
end
def cible_url
"A changer"
end
end