summaryrefslogtreecommitdiff
path: root/app/finders/autocomplete
diff options
context:
space:
mode:
authorWei-Meng Lee <wlee@gitlab.com>2019-04-12 11:59:09 +0800
committerWei-Meng Lee <wlee@gitlab.com>2019-04-12 14:58:42 +0800
commit3ef5666783b220422283e4d5acbcbbbfac1e935a (patch)
tree915afab9afebcecc7889143520763b3d1ebe0333 /app/finders/autocomplete
parentd25cdca68fb945db6b60cf4da60bc6ed503bea49 (diff)
downloadgitlab-ce-3ef5666783b220422283e4d5acbcbbbfac1e935a.tar.gz
Only show in autocomplete when author active
Diffstat (limited to 'app/finders/autocomplete')
-rw-r--r--app/finders/autocomplete/users_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/autocomplete/users_finder.rb b/app/finders/autocomplete/users_finder.rb
index 45955783be9..9df77dbdc0f 100644
--- a/app/finders/autocomplete/users_finder.rb
+++ b/app/finders/autocomplete/users_finder.rb
@@ -31,7 +31,7 @@ module Autocomplete
# Include current user if available to filter by "Me"
items.unshift(current_user) if prepend_current_user?
- if prepend_author? && (author = User.find_by_id(author_id))
+ if (prepend_author? && author = User.find_by_id(author_id)) && author.active?
items.unshift(author)
end
end