mirror of
https://ghfast.top/https://github.com/discourse/discourse-topic-voting.git
synced 2026-07-16 11:26:36 +08:00
9 lines
219 B
Ruby
9 lines
219 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseTopicVoting
|
|
module UserExtension
|
|
def self.prepended(base)
|
|
base.has_many :votes, class_name: 'DiscourseTopicVoting::Vote', dependent: :destroy
|
|
end
|
|
end
|
|
end
|