mirror of
https://github.com/discourse/discourse-solved.git
synced 2025-02-09 21:24:43 +00:00
10 lines
217 B
Ruby
10 lines
217 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseSolved::UserSummaryExtension
|
|
extend ActiveSupport::Concern
|
|
|
|
def solved_count
|
|
UserAction.where(user: @user).where(action_type: UserAction::SOLVED).count
|
|
end
|
|
end
|