mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 15:20:39 +08:00
7 lines
162 B
Ruby
7 lines
162 B
Ruby
# frozen_string_literal: true
|
|
|
|
DiscourseTemplates::Engine.routes.draw do
|
|
resources :templates, path: "/", only: [:index] do
|
|
member { post "use" }
|
|
end
|
|
end
|