mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 00:05:39 +08:00
9 lines
157 B
Ruby
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
|