Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
roxanaopr committed Jun 18, 2021
1 parent f111473 commit 1a49260
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion decidim-core/app/queries/decidim/stats_users_count.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def query
users = Decidim::User.where(organization: @organization).not_deleted.not_blocked.confirmed
users = users.where("created_at >= ?", @start_at) if @start_at.present?
users = users.where("created_at <= ?", @end_at) if @end_at.present?
# users = users.where.not(confirmed_at: nil)
users.count
end
end
Expand Down

0 comments on commit 1a49260

Please sign in to comment.