group.rb 2.2 KB
Newer Older
1 2
require 'constraints/group_url_constrainer'

3 4 5
resources :groups, only: [:index, :new, :create] do
  post :preview_markdown
end
6

V
Valery Sizov 已提交
7 8 9 10
constraints(GroupUrlConstrainer.new) do
  scope(path: 'groups/*id',
        controller: :groups,
        constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom)/ }) do
11 12 13 14 15 16 17 18
    scope(path: '-') do
      get :edit, as: :edit_group
      get :issues, as: :issues_group
      get :merge_requests, as: :merge_requests_group
      get :projects, as: :projects_group
      get :activity, as: :activity_group
    end

V
Valery Sizov 已提交
19
    get '/', action: :show, as: :group_canonical
20
  end
D
Dmitriy Zaporozhets 已提交
21

22
  scope(path: 'groups/*group_id/-',
V
Valery Sizov 已提交
23 24 25
        module: :groups,
        as: :group,
        constraints: { group_id: Gitlab::PathRegex.full_namespace_route_regex }) do
26 27 28
    namespace :settings do
      resource :ci_cd, only: [:show], controller: 'ci_cd'
    end
29

30
    resources :variables, only: [:index, :show, :update, :create, :destroy]
D
Dmitriy Zaporozhets 已提交
31

32
    resources :children, only: [:index]
B
Bob Van Landuyt 已提交
33

34 35 36
    resources :labels, except: [:show] do
      post :toggle_subscription, on: :member
    end
37

38 39 40 41 42
    resources :milestones, constraints: { id: /[^\/]+/ }, only: [:index, :show, :edit, :update, :new, :create] do
      member do
        get :merge_requests
        get :participants
        get :labels
43
      end
44
    end
45

46
    resource :avatar, only: [:destroy]
47

48 49 50
    resources :group_members, only: [:index, :create, :update, :destroy], concerns: :access_requestable do
      post :resend_invite, on: :member
      delete :leave, on: :collection
V
Valery Sizov 已提交
51 52
    end
  end
53 54 55 56 57 58 59 60 61 62

  scope(path: '*id',
        as: :group,
        constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom)/ },
        controller: :groups) do
    get '/', action: :show
    patch '/', action: :update
    put '/', action: :update
    delete '/', action: :destroy
  end
B
Bob Van Landuyt 已提交
63 64 65 66

  # Legacy paths should be defined last, so they would be ignored if routes with
  # one of the previously reserved words exist.
  scope(path: 'groups/*group_id') do
67 68 69
    Gitlab::Routing.redirect_legacy_paths(self, :labels, :milestones, :group_members,
                                          :edit, :issues, :merge_requests, :projects,
                                          :activity)
B
Bob Van Landuyt 已提交
70
  end
71
end