7 lines
102 B
Ruby
7 lines
102 B
Ruby
module GhostUser
|
|
extend ActiveSupport::Concern
|
|
|
|
def ghost_user?
|
|
user && user.ghost?
|
|
end
|
|
end
|