Sha256: a8b395e2ef2f90b89acb1b689dae69def817275a19cd6f40551a3c1d77cdd133
Contents?: true
Size: 430 Bytes
Versions: 52
Compression:
Stored size: 430 Bytes
Contents
module RocketCMS module Models module ActiveRecord module Page extend ActiveSupport::Concern included do acts_as_nested_set has_paper_trail validates_lengths_from_database only: [:name, :title, :content, :excerpt, :h1, :keywords, :robots, :og_title, :regexp, :redirect, :fullpath] scope :sorted, -> { order(lft: :asc) } end end end end end
Version data entries
52 entries across 52 versions & 2 rubygems