Commit ec22973b authored by Luke Duncalfe's avatar Luke Duncalfe

Merge branch 'djadmin-dast-profiles-route-update' into 'master'

Add new route for DAST Profile Library

See merge request gitlab-org/gitlab!84451
parents ef8d8c27 eecb5158
......@@ -65,6 +65,10 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
post :auto_fix, on: :collection
resource :corpus_management, only: [:show], controller: :corpus_management
resource :api_fuzzing, only: :show, controller: :api_fuzzing_configuration
resource :profile_library, only: [:show], controller: :dast_profiles do
resources :dast_site_profiles, only: [:new, :edit]
resources :dast_scanner_profiles, only: [:new, :edit]
end
resource :dast_scans, only: [:show], controller: :dast_profiles do
resources :dast_site_profiles, only: [:new, :edit]
resources :dast_scanner_profiles, only: [:new, :edit]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment