SpontaneousCMS/spontaneous

View on GitHub
lib/spontaneous/rack/back/private.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spontaneous::Rack::Back
  class Private < Base
    include Spontaneous::Rack::Public

    get '/:id.?:format?' do
      content_for_request { |page|
        _render_page_with_output(page, "html", {})
      }
    end
  end
end