Sha256: 689dbbba4b7b36028e6923ba2e83722c45ef9aee4048b775859fcf36e011cf19
Contents?: true
Size: 511 Bytes
Versions: 14
Compression:
Stored size: 511 Bytes
Contents
module SitemapData extend ActiveSupport::Concern SITEMAP_CHANGEFREQ_ARRAY = %w(always hourly daily weekly monthly yearly never) included do if RocketCMS.mongoid? field :sitemap_show, type: Boolean, default: true field :sitemap_lastmod, type: DateTime field :sitemap_changefreq, type: String, default: 'daily' field :sitemap_priority, type: Float elsif RocketCMS.active_record? end end def self.admin RocketCMS.sitemap_data_config end end
Version data entries
14 entries across 14 versions & 1 rubygems