mirror of
https://github.com/discourse/discourse-solved.git
synced 2025-07-03 20:32:12 +00:00
8 lines
204 B
Ruby
8 lines
204 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseSolved::TopicExtension
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
prepended { has_one :solved, class_name: "DiscourseSolved::SolvedTopic", dependent: :destroy }
|
||
|
end
|