mirror of
https://ghfast.top/https://github.com/discourse/discourse-translator.git
synced 2026-07-16 11:46:33 +08:00
7 lines
237 B
Ruby
7 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
DiscourseTranslator::Engine.routes.draw do
|
|
post "/translate" => "translator#translate", :format => :json
|
|
end
|
|
|
|
Discourse::Application.routes.draw { mount ::DiscourseTranslator::Engine, at: "/translator" }
|