engine/lib/locomotive/liquid/drops/current_user.rb
Enrique García Cota f407bc7a8f initial version
2012-02-28 19:29:54 +01:00

12 lines
161 B
Ruby

module Locomotive
module Liquid
module Drops
class CurrentUser < Base
def logged_in?
false
end
end
end
end
end