mirror of
https://github.com/discourse/discourse-solved.git
synced 2025-05-10 18:37:29 +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
|