debian-mirror-gitlab/app/models/concerns/ghost_user.rb

8 lines
102 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module GhostUser
extend ActiveSupport::Concern
def ghost_user?
user && user.ghost?
end
end