cortex-cms/cortex

View on GitHub
app/models/concerns/cortex/searchable_content_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cortex
  module SearchableContentType
    extend ActiveSupport::Concern

    included do
      include Cortex::Searchable

      # TODO: ContentType mappings
    end
  end
end