mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-17 18:58:31 +08:00
9 lines
182 B
Ruby
9 lines
182 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscoursePolicy
|
|
module PostExtension
|
|
extend ActiveSupport::Concern
|
|
|
|
prepended { has_one :post_policy, dependent: :destroy }
|
|
end
|
|
end
|