mirror of
https://github.com/discourse/discourse.git
synced 2025-01-02 18:33:44 +08:00
7 lines
151 B
Ruby
7 lines
151 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Styleguide::Engine.routes.draw do
|
||
|
get "/" => "styleguide#index"
|
||
|
get "/:category/:section" => "styleguide#index"
|
||
|
end
|