mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 06:35:15 +08:00
8 lines
240 B
Ruby
8 lines
240 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
DiscourseNarrativeBot::Engine.routes.draw do
|
||
|
get "/certificate" => "certificates#generate", :format => :svg
|
||
|
end
|
||
|
|
||
|
Discourse::Application.routes.draw { mount ::DiscourseNarrativeBot::Engine, at: "/discobot" }
|