discourse/plugins/discourse-post-voting/extensions/user_extension.rb
2025-07-15 16:38:05 +02:00

9 lines
157 B
Ruby

# frozen_string_literal: true
module PostVoting
module UserExtension
def self.included(base)
base.has_many :post_voting_votes
end
end
end