Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Portal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
Portal
Merge requests
!62
Deploy fix
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Deploy fix
development
into
master
Overview
0
Commits
1
Pipelines
10
Changes
1
Merged
Deploy fix
Ruben Backx
requested to merge
development
into
master
May 24, 2024
Overview
0
Commits
1
Pipelines
10
Changes
1
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
3bb93907
1 commit,
May 24, 2024
1 file
+
38
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/main/java/nl/tudelft/portal/config/FilterConfig.java
0 → 100644
+
38
−
0
View file @ 3bb93907
Edit in single-file editor
Open in Web IDE
/*
* Portal - A site for direct access to the Labrador system as a teacher or admin
* Copyright (C) 2020- Delft University of Technology
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package
nl.tudelft.portal.config
;
import
java.util.Set
;
import
org.springframework.boot.web.servlet.FilterRegistrationBean
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.web.filter.HiddenHttpMethodFilter
;
@Configuration
public
class
FilterConfig
{
@Bean
public
FilterRegistrationBean
<
HiddenHttpMethodFilter
>
hiddenHttpFilter
()
{
FilterRegistrationBean
<
HiddenHttpMethodFilter
>
filterRegistrationBean
=
new
FilterRegistrationBean
<>(
new
HiddenHttpMethodFilter
());
filterRegistrationBean
.
setUrlPatterns
(
Set
.
of
(
"/*"
,
"/**"
));
return
filterRegistrationBean
;
}
}
Loading