mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 11:03:39 +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" }
|