0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-10 21:51:49 +08:00
discourse/plugins/discourse-assign/lib/discourse_assign/post_extension.rb
2025-07-15 16:38:05 +02:00

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