module Roda::RodaPlugins::SymbolViews::RequestMethods

def block_result_body(result)

template name and use the template view as the body.
If the block result is a symbol, consider the symbol a
def block_result_body(result)
  if result.is_a?(Symbol)
    scope.view(result)
  else
    super
  end
end