Commit b30e44dc authored by Sean McGivern's avatar Sean McGivern

Merge branch 'fix/user-count-2' into 'master'

Ignore internal users on user counts

Closes #2096

See merge request !1659
parents cc6d315c faf22314
......@@ -209,7 +209,7 @@ class User < ActiveRecord::Base
scope :admins, -> { where(admin: true) }
scope :blocked, -> { with_states(:blocked, :ldap_blocked) }
scope :external, -> { where(external: true) }
scope :active, -> { with_state(:active) }
scope :active, -> { with_state(:active).non_internal }
scope :not_in_project, ->(project) { project.users.present? ? where("id not in (:ids)", ids: project.users.map(&:id) ) : all }
scope :without_projects, -> { where('id NOT IN (SELECT DISTINCT(user_id) FROM members WHERE user_id IS NOT NULL AND requested_at IS NULL)') }
scope :subscribed_for_admin_email, -> { where(admin_email_unsubscribed_at: nil) }
......
---
title: Fix active user count to ignore internal users
merge_request:
author:
......@@ -1846,4 +1846,16 @@ describe User, models: true do
end
end
end
context '.active' do
before do
User.ghost
create(:user, name: 'user', state: 'active')
create(:user, name: 'user', state: 'blocked')
end
it 'only counts active and non internal users' do
expect(User.active.count).to eq(1)
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment