* Tue Jan 28 2025 Brian Read <brianr@koozali.org> 11.0.0-47.sme

- Temp (we hope) remove CSRF protection plugin  [SME: ]
- Fix comparison in footer with config->mode
This commit is contained in:
2025-01-28 15:23:39 +00:00
parent 0e777fd51a
commit a62968d2d9
3 changed files with 13 additions and 9 deletions

View File

@@ -224,12 +224,12 @@ sub setup_plugins {
# CSRF protection if production mode
# $self->plugin('Mojolicious::Plugin::CSRFDefender' => {
# Adapted plugin for use with GET method
$self->plugin('SrvMngr::Plugin::CSRFDefender' => {
onetime => 1,
error_status => 400,
error_content => 'Error: CSRF token is invalid or outdated'
#$self->plugin('SrvMngr::Plugin::CSRFDefender' => {
#onetime => 1,
#error_status => 400,
#error_content => 'Error: CSRF token is invalid or outdated'
#error_template => 'csrf_400'
}) if ( $self->mode eq 'production' );
#}) if ( $self->mode eq 'production' );
$self->plugin('SrvMngr::Plugin::I18N' => {namespace => 'SrvMngr::I18N', default => 'en'});
@@ -866,4 +866,4 @@ sub get_reg_mask {
}
1;
1;