mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 17:40:33 +08:00
9 lines
183 B
Ruby
9 lines
183 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscoursePoll
|
|
module UserExtension
|
|
extend ActiveSupport::Concern
|
|
|
|
prepended { has_many :poll_votes, dependent: :delete_all }
|
|
end
|
|
end
|