-
- Downloads
There was a problem fetching the pipeline summary.
Fix merge conflicts on CE Upstream merge
parent
9ff500d3
No related branches found
No related tags found
Pipeline #
Showing
- .gitlab-ci.yml 0 additions, 4 deletions.gitlab-ci.yml
- app/controllers/admin/application_settings_controller.rb 1 addition, 5 deletionsapp/controllers/admin/application_settings_controller.rb
- app/views/search/results/_commit.html.haml 0 additions, 4 deletionsapp/views/search/results/_commit.html.haml
- config/routes/group.rb 24 additions, 40 deletionsconfig/routes/group.rb
- config/routes/project.rb 1 addition, 3 deletionsconfig/routes/project.rb
- spec/features/global_search_spec.rb 0 additions, 17 deletionsspec/features/global_search_spec.rb
- spec/models/project_spec.rb 0 additions, 4 deletionsspec/models/project_spec.rb
- spec/spec_helper.rb 0 additions, 4 deletionsspec/spec_helper.rb
Loading
| Loading
| @@ -14,45 +14,6 @@ |
resources :groups, only: [:index, :new, :create] | ||
<<<<<<< HEAD | ||
scope module: :groups do | ||
## EE-specific | ||
resource :analytics, only: [:show] | ||
resource :ldap, only: [] do | ||
member do | ||
put :sync | ||
end | ||
end | ||
resources :ldap_group_links, only: [:index, :create, :destroy] | ||
## EE-specific | ||
resources :group_members, only: [:index, :create, :update, :destroy], concerns: :access_requestable do | ||
post :resend_invite, on: :member | ||
delete :leave, on: :collection | ||
end | ||
resource :avatar, only: [:destroy] | ||
resources :milestones, constraints: { id: /[^\/]+/ }, only: [:index, :show, :update, :new, :create] | ||
resources :labels, except: [:show], constraints: { id: /\d+/ } | ||
## EE-specific | ||
resource :notification_setting, only: [:update] | ||
resources :audit_events, only: [:index] | ||
## EE-specific | ||
end | ||
## EE-specific | ||
resources :hooks, only: [:index, :create, :destroy], constraints: { id: /\d+/ }, module: :groups do | ||
member do | ||
get :test | ||
end | ||
end | ||
## EE-specific | ||
end | ||
get 'groups/:id' => 'groups#show', as: :group_canonical | ||
======= | ||
scope(path: 'groups/:id', controller: :groups) do | ||
get :edit, as: :edit_group | ||
get :issues, as: :issues_group | ||
Loading
| Loading
| @@ -62,6 +23,17 @@ |
end | ||
scope(path: 'groups/:group_id', module: :groups, as: :group) do | ||
## EE-specific | ||
resource :analytics, only: [:show] | ||
resource :ldap, only: [] do | ||
member do | ||
put :sync | ||
end | ||
end | ||
resources :ldap_group_links, only: [:index, :create, :destroy] | ||
## EE-specific | ||
resources :group_members, only: [:index, :create, :update, :destroy], concerns: :access_requestable do | ||
post :resend_invite, on: :member | ||
delete :leave, on: :collection | ||
Loading
| Loading
| @@ -70,8 +42,20 @@ |
resource :avatar, only: [:destroy] | ||
resources :milestones, constraints: { id: /[^\/]+/ }, only: [:index, :show, :update, :new, :create] | ||
resources :labels, except: [:show], constraints: { id: /\d+/ } | ||
>>>>>>> ce/master | ||
## EE-specific | ||
resource :notification_setting, only: [:update] | ||
resources :audit_events, only: [:index] | ||
## EE-specific | ||
end | ||
## EE-specific | ||
resources :hooks, only: [:index, :create, :destroy], constraints: { id: /\d+/ }, module: :groups do | ||
member do | ||
get :test | ||
end | ||
end | ||
|
||
## EE-specific | ||
# Must be last route in this file | ||
get 'groups/:id' => 'groups#show', as: :group_canonical |