module Scrivito class EditingContextHelper < Struct.new(:request) def scrivito_user editing_context.editor end def in_editable_view? editing_context.editable_display_mode? end private def editing_context Scrivito::EditingContextMiddleware.from_request(request) end end end