heylium_app/app/models/cible_url.rb
Nicolas Bally 8e18de4077 initial
2016-08-03 00:22:29 +02:00

12 lines
184 B
Ruby
Executable File

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