Sha256: e440eeaecbed750530ca0a0051e6a9e7bea526c23850c1b52a974a6b4848505c
Contents?: true
Size: 556 Bytes
Versions: 13
Compression:
Stored size: 556 Bytes
Contents
module RocketCMS module Models module Mongoid module Page extend ActiveSupport::Concern include ManualSlug included do field :regexp, type: String field :redirect, type: String field :content, type: String, localize: RocketCMS.configuration.localize field :fullpath, type: String has_and_belongs_to_many :menus, inverse_of: :pages acts_as_nested_set manual_slug :name scope :sorted, -> { asc(:lft) } end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems