mirror of
https://ghfast.top/https://github.com/discourse/discourse-docs.git
synced 2026-07-15 11:27:41 +08:00
8 lines
229 B
Ruby
8 lines
229 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_dependency "docs_constraint"
|
|
|
|
Docs::Engine.routes.draw do
|
|
get "/" => "docs#index", :constraints => DocsConstraint.new
|
|
get ".json" => "docs#index", :constraints => DocsConstraint.new
|
|
end
|