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

10 lines
181 B
Ruby

# -*- encoding : utf-8 -*-
class MenuUrl < ApplicationRecord
has_one :menu_item, :as => :menu_content
validates :url, :presence => true
HUMAN_NAME = "Lien externe"
end