locomotivecms/engine

View on GitHub
app/models/locomotive/concerns/shared/seo.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Locomotive
  module Concerns
    module Shared
      module Seo
        extend ActiveSupport::Concern

        included do
          field :seo_title,         type: String, localize: true
          field :meta_keywords,     type: String, localize: true
          field :meta_description,  type: String, localize: true
        end

      end # Seo
    end # Shared
  end # Concerns
end # Locomotive