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