cris_app/app/models/cible_url.rb
Nicolas Bally af54665111 initial
2014-10-20 23:32:40 +02: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