mirror of
https://github.com/discourse/discourse.git
synced 2026-08-10 21:51:49 +08:00
9 lines
194 B
Ruby
Vendored
9 lines
194 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscourseAssign
|
|
module PostExtension
|
|
extend ActiveSupport::Concern
|
|
|
|
prepended { has_one :assignment, as: :target, dependent: :destroy }
|
|
end
|
|
end
|