Sha256: 47bf10f6a92ea5da95bf332e17c37f959686d2972109b83705c99c871e6f5c32
Contents?: true
Size: 349 Bytes
Versions: 15
Compression:
Stored size: 349 Bytes
Contents
module Sis module Core class Menu < ApplicationRecord has_and_belongs_to_many :user_roles belongs_to :application_module belongs_to :parent, class_name: 'Sis::Core::Menu', optional: true has_many :children, class_name: 'Sis::Core::Menu', foreign_key: 'parent_id' validates :text, presence: true end end end
Version data entries
15 entries across 15 versions & 1 rubygems