Commit bf65d479 authored by Stan Hu's avatar Stan Hu

Merge branch 'ashmckenzie/master-fixes' into 'master'

Master fixes

See merge request gitlab-org/gitlab-ee!13118
parents bf0c0e0d aabf9d2a
......@@ -539,12 +539,16 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
resources :audit_events, only: [:index]
## EE-specific
scope '-' do
namespace :settings do
get :members, to: redirect("%{namespace_id}/%{project_id}/project_members")
resource :ci_cd, only: [:show, :update], controller: 'ci_cd' do
post :reset_cache
put :reset_registration_token
end
resource :operations, only: [:show, :update]
resource :integrations, only: [:show]
resource :slack, only: [:destroy, :edit, :update] do
......@@ -556,6 +560,7 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
post :cleanup
end
end
end
resources :error_tracking, only: [:index], controller: :error_tracking do
collection do
......@@ -571,10 +576,6 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
## EE-specific
resources :managed_licenses, only: [:index, :show, :new, :create, :edit, :update, :destroy]
## EE-specific
namespace :settings do
resource :operations, only: [:show, :update]
end
end
resources(:projects,
......
......@@ -22,7 +22,7 @@ describe EE::VersionCheckHelper do
end
it 'links to an ee-tag' do
expect(helper.link_to_version).to include('https://gitlab.com/gitlab-org/gitlab-ee/tags/v8.0.2-ee')
expect(helper.link_to_version).to include('https://gitlab.com/gitlab-org/gitlab-ee/-/tags/v8.0.2-ee')
end
end
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