pmr_app/app/models/cible_url.rb
Nicolas Bally 428372d6f9 initial
2016-02-08 10:27:25 +01:00

12 lines
184 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