0.30 prep for debug enabling

This commit is contained in:
2024-09-07 22:59:50 +10:00
parent 5ef7591185
commit 8abc394b3f
3 changed files with 162 additions and 162 deletions

24
plugin.breakout Normal file
View File

@ -0,0 +1,24 @@
# plugins/discourse-legacy_links/plugin.rb
# frozen_string_literal: true
# name: discourse-legacy_links
# about: A plugin to handle legacy Gossamer Forums URLs
# version: 0.28
# authors: saint@federated.computer
# url: https://gitea.federated.computer/saint/discourse-legacy_links.git
# require 'digest'
# enabled_site_setting :discourse_legacy_links_enabled
module DiscourseLegacyLinks
class Engine < ::Rails::Engine
engine_name 'discourse_legacy_links'
isolate_namespace DiscourseLegacyLinks
end
end
# Load the plugin's engine and routes
require_relative 'lib/discourse_legacy_links/engine'
require_relative 'config/routes'