mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 11:53:31 +08:00
9 lines
195 B
Ruby
Vendored
9 lines
195 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscourseAssign
|
|
module TopicExtension
|
|
extend ActiveSupport::Concern
|
|
|
|
prepended { has_one :assignment, as: :target, dependent: :destroy }
|
|
end
|
|
end
|