mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 11:33:42 +08:00
DEV: Make discourse_narrative_bot
use Rails autoload (#26044)
Why this change? Instead of manually loading files, we should just structure the plugin so that it relies on Rails autoload strategy and avoid all the manual `require_relative`s. What does this change do? 1. Structure the plugin to use Rails autoloading convention 2. Remove onceff jobs that were added 5-6 years ago. There is no need to carry these jobs anymore after such a long time. 3. Move setting of `SiteSetting.discourse_narrative_bot_enabled` to `false` in the test environment from core into the plugin.
This commit is contained in:

committed by
GitHub

parent
6b46b9ab78
commit
3491642f98
7
plugins/discourse-narrative-bot/config/routes.rb
Normal file
7
plugins/discourse-narrative-bot/config/routes.rb
Normal file
@ -0,0 +1,7 @@
|
||||
# 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" }
|
Reference in New Issue
Block a user