gitlab-org--gitlab-foss/app/models/concerns/ghost_user.rb
2018-08-07 00:37:36 -07:00

9 lines
133 B
Ruby

# frozen_string_literal: true
module GhostUser
extend ActiveSupport::Concern
def ghost_user?
user && user.ghost?
end
end