mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 11:44:06 -06: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
|