8 lines
118 B
Ruby
8 lines
118 B
Ruby
module Threadable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_one :thread_entry, as: :threadable
|
|
end
|
|
end
|