Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 09:20:29 +01:00
Prevent guests from accessing custom wizards
Dieser Commit ist enthalten in:
Ursprung
f3588dbe89
Commit
760c67bb6f
1 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen
|
@ -1,6 +1,10 @@
|
||||||
class CustomWizard::WizardController < ::ApplicationController
|
class CustomWizard::WizardController < ::ApplicationController
|
||||||
prepend_view_path(Rails.root.join('plugins', 'discourse-custom-wizard', 'views'))
|
prepend_view_path(Rails.root.join('plugins', 'discourse-custom-wizard', 'views'))
|
||||||
layout 'wizard'
|
layout 'wizard'
|
||||||
|
|
||||||
|
skip_before_action :check_xhr, :preload_json
|
||||||
|
|
||||||
|
before_action :ensure_logged_in
|
||||||
helper_method :wizard_page_title
|
helper_method :wizard_page_title
|
||||||
|
|
||||||
def wizard_page_title
|
def wizard_page_title
|
||||||
|
|
Laden …
In neuem Issue referenzieren