This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/models/concerns/searchable.rb
2017-08-15 11:46:57 -04:00

8 lines
153 B
Ruby

module Searchable
extend ActiveSupport::Concern
included do
has_one "#{self.name.underscore}_search_data".to_sym, dependent: :destroy
end
end