mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:56:36 +08:00
11 lines
239 B
Ruby
11 lines
239 B
Ruby
# These routes must be loaded after all others.
|
|
# Routes are loaded in this order:
|
|
#
|
|
# 1. config/routes.rb
|
|
# 2. routes in engines
|
|
# 3. config/routes_last.rb
|
|
|
|
Discourse::Application.routes.draw do
|
|
get "*url", to: 'permalinks#show'
|
|
end
|