Commit 21f55f8c authored by Jason Goodman's avatar Jason Goodman

Move feature flag issues route to EE

parent c5e00ece
......@@ -373,9 +373,7 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
end
end
resources :feature_flags, param: :iid do
resources :feature_flag_issues, only: [:index, :create, :destroy], as: 'issues', path: 'issues'
end
resources :feature_flags, param: :iid
resource :feature_flags_client, only: [] do
post :reset_token
end
......
......@@ -94,6 +94,10 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
resources :dependencies, only: [:index]
resources :licenses, only: [:index, :create, :update]
resources :feature_flags, param: :iid do
resources :feature_flag_issues, only: [:index, :create, :destroy], as: 'issues', path: 'issues'
end
scope :on_demand_scans do
root 'on_demand_scans#index', as: 'on_demand_scans'
end
......
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