Commit f9cf04fe authored by Sean McGivern's avatar Sean McGivern

Merge branch 'pl-user-bot_type-ce' into 'master'

CE Backport: Refactor Service Desk's bot user

See merge request gitlab-org/gitlab-ce!26671
parents 7457c1e1 a69f8891
...@@ -537,20 +537,16 @@ class User < ApplicationRecord ...@@ -537,20 +537,16 @@ class User < ApplicationRecord
username username
end end
def self.internal_attributes
[:ghost]
end
def internal? def internal?
self.class.internal_attributes.any? { |a| self[a] } ghost?
end end
def self.internal def self.internal
where(Hash[internal_attributes.zip([true] * internal_attributes.size)]) where(ghost: true)
end end
def self.non_internal def self.non_internal
where(internal_attributes.map { |attr| "#{attr} IS NOT TRUE" }.join(" AND ")) where('ghost IS NOT TRUE')
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