mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 00:43:43 +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
|