v0.9 So close, but it doesn't work still...
This commit is contained in:
parent
476a518416
commit
f030266fc2
10
plugin.rb
10
plugin.rb
@ -4,13 +4,13 @@
|
|||||||
|
|
||||||
# name: discourse-legacy_links
|
# name: discourse-legacy_links
|
||||||
# about: A plugin to handle legacy Gossamer Forums URLs
|
# about: A plugin to handle legacy Gossamer Forums URLs
|
||||||
# version: 0.8
|
# version: 0.9
|
||||||
# authors: saint@federated.computer
|
# authors: saint@federated.computer
|
||||||
# url: https://gitea.federated.computer/saint/discourse-legacy_links.git
|
# url: https://gitea.federated.computer/saint/discourse-legacy_links.git
|
||||||
|
|
||||||
# require 'digest'
|
# require 'digest'
|
||||||
|
|
||||||
# enabled_site_setting :discourse_legacy_routing_enabled
|
# enabled_site_setting :discourse_legacy_links_enabled
|
||||||
|
|
||||||
# after_initialize do
|
# after_initialize do
|
||||||
after_initialize do
|
after_initialize do
|
||||||
@ -24,6 +24,11 @@ after_initialize do
|
|||||||
class CustomPostController < ::ApplicationController
|
class CustomPostController < ::ApplicationController
|
||||||
# Match URLs that include a post_id at the end or query parameter
|
# Match URLs that include a post_id at the end or query parameter
|
||||||
# Main action triggered when the route is matched.
|
# Main action triggered when the route is matched.
|
||||||
|
def test
|
||||||
|
Rails.logger.warn "[WARN WARN WARN WARN WARN WARN WARN WARN WARN WARN AMDG JMJ PAX WARN WARN WARN WARN]"
|
||||||
|
render plain: 'Test route'
|
||||||
|
end
|
||||||
|
|
||||||
def index
|
def index
|
||||||
Rails.logger.warn "[DEBUG] Reached the index action"
|
Rails.logger.warn "[DEBUG] Reached the index action"
|
||||||
|
|
||||||
@ -123,6 +128,7 @@ after_initialize do
|
|||||||
|
|
||||||
# Register custom routes to handle legacy URLs
|
# Register custom routes to handle legacy URLs
|
||||||
Discourse::Application.routes.append do
|
Discourse::Application.routes.append do
|
||||||
|
get '/test_route' => 'custom_post#test'
|
||||||
get '/forum/*path' => 'discourse_legacy_links/custom_post#index'
|
get '/forum/*path' => 'discourse_legacy_links/custom_post#index'
|
||||||
get '/forum' => 'discourse_legacy_links/custom_post#index'
|
get '/forum' => 'discourse_legacy_links/custom_post#index'
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user