mirror of
https://github.com/discourse/discourse.git
synced 2026-08-10 04:58:31 -05:00
10 lines
157 B
Ruby
10 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
|