Sha256: ef88cc2a1ef530c170497199fe3c151a02ca7e3257a0c09e9ea886419f3fd408
Contents?: true
Size: 809 Bytes
Versions: 107
Compression:
Stored size: 809 Bytes
Contents
module RocketCMS module Models module Mongoid module Seo extend ActiveSupport::Concern include ::Mongoid::Paperclip included do field :name, type: String, localize: RocketCMS.config.localize field :h1, type: String, localize: RocketCMS.config.localize field :title, type: String, localize: RocketCMS.config.localize field :keywords, type: String, localize: RocketCMS.config.localize field :description, type: String, localize: RocketCMS.config.localize field :robots, type: String, localize: RocketCMS.config.localize field :og_title, type: String, localize: RocketCMS.config.localize has_mongoid_attached_file :og_image, styles: {thumb: "800x600>"} end end end end end
Version data entries
107 entries across 107 versions & 2 rubygems