Skip to content
Snippets Groups Projects
Commit ce31fb48 authored by Douwe Maan's avatar Douwe Maan
Browse files

Merge branch 'fix/requests-profiles-controller-does-not-catch-certain-files'

parents 6985fea2 3e17187f
No related branches found
No related tags found
No related merge requests found
Pipeline #
Loading
@@ -22,6 +22,7 @@ v 8.11.0 (unreleased)
Loading
@@ -22,6 +22,7 @@ v 8.11.0 (unreleased)
- Multiple trigger variables show in separate lines (Katarzyna Kobierska Ula Budziszewska) - Multiple trigger variables show in separate lines (Katarzyna Kobierska Ula Budziszewska)
- Profile requests when a header is passed - Profile requests when a header is passed
- Make error pages responsive (Takuya Noguchi) - Make error pages responsive (Takuya Noguchi)
- Change requests_profiles resource constraint to catch virtually any file
   
v 8.10.3 (unreleased) v 8.10.3 (unreleased)
   
Loading
Loading
Loading
@@ -279,7 +279,7 @@ Rails.application.routes.draw do
Loading
@@ -279,7 +279,7 @@ Rails.application.routes.draw do
resource :health_check, controller: 'health_check', only: [:show] resource :health_check, controller: 'health_check', only: [:show]
resource :background_jobs, controller: 'background_jobs', only: [:show] resource :background_jobs, controller: 'background_jobs', only: [:show]
resource :system_info, controller: 'system_info', only: [:show] resource :system_info, controller: 'system_info', only: [:show]
resources :requests_profiles, only: [:index, :show], param: :name resources :requests_profiles, only: [:index, :show], param: :name, constraints: { name: /.+\.html/ }
   
resources :namespaces, path: '/projects', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: [] do resources :namespaces, path: '/projects', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: [] do
root to: 'projects#index', as: :projects root to: 'projects#index', as: :projects
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment