admin.rb 3.41 KB
Newer Older
1
namespace :admin do
2
  resources :users, constraints: { id: %r{[a-zA-Z./0-9_\-]+} } do
3 4
    resources :keys, only: [:show, :destroy]
    resources :identities, except: [:show]
5
    resources :impersonation_tokens, only: [:index, :create] do
6 7 8 9
      member do
        put :revoke
      end
    end
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

    member do
      get :projects
      get :keys
      put :block
      put :unblock
      put :unlock
      put :confirm
      post :impersonate
      patch :disable_two_factor
      delete 'remove/:email_id', action: 'remove_email', as: 'remove_email'
    end
  end

  resource :impersonation, only: :destroy

  resources :abuse_reports, only: [:index, :destroy]
27 28
  resources :gitaly_servers, only: [:index]

29 30 31 32 33 34 35 36
  resources :spam_logs, only: [:index, :destroy] do
    member do
      post :mark_as_ham
    end
  end

  resources :applications

37 38 39 40
  resources :groups, only: [:index, :new, :create]

  scope(path: 'groups/*id',
        controller: :groups,
41
        constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom)/ }) do
42 43

    scope(as: :group) do
44
      put :members_update
45 46 47 48 49
      get :edit, action: :edit
      get '/', action: :show
      patch '/', action: :update
      put '/', action: :update
      delete '/', action: :destroy
50 51 52
    end
  end

53
  resources :deploy_keys, only: [:index, :new, :create, :edit, :update, :destroy]
54

55 56
  resources :hooks, only: [:index, :create, :edit, :update, :destroy] do
    member do
57
      post :test
58
    end
59 60 61

    resources :hook_logs, only: [:show] do
      member do
62
        post :retry
63 64
      end
    end
65 66 67 68 69 70 71
  end

  resources :broadcast_messages, only: [:index, :edit, :create, :update, :destroy] do
    post :preview, on: :collection
  end

  resource :logs, only: [:show]
72
  resource :health_check, controller: 'health_check', only: [:show]
73
  resource :background_jobs, controller: 'background_jobs', only: [:show]
74

75 76 77
  resource :system_info, controller: 'system_info', only: [:show]
  resources :requests_profiles, only: [:index, :show], param: :name, constraints: { name: /.+\.html/ }

78
  resources :projects, only: [:index]
79

80 81
  scope(path: 'projects/*namespace_id',
        as: :namespace,
82
        constraints: { namespace_id: Gitlab::PathRegex.full_namespace_route_regex }) do
83 84
    resources(:projects,
              path: '/',
85
              constraints: { id: Gitlab::PathRegex.project_route_regex },
86
              only: [:show]) do
87 88 89 90 91 92 93 94 95 96 97 98

      member do
        put :transfer
        post :repository_check
      end

      resources :runner_projects, only: [:create, :destroy]
    end
  end

  resource :appearances, only: [:show, :create, :update], path: 'appearance' do
    member do
99
      get :preview_sign_in
100 101
      delete :logo
      delete :header_logos
102
      delete :favicon
103 104 105 106 107
    end
  end

  resource :application_settings, only: [:show, :update] do
    resources :services, only: [:index, :edit, :update]
108 109

    get :usage_data
110
    put :reset_registration_token
111 112
    put :reset_health_check_token
    put :clear_repository_check_states
113
    get :integrations, :repository, :templates, :ci_cd, :reporting, :metrics_and_profiling, :network, :geo, :preferences
114 115 116 117 118 119 120 121 122
  end

  resources :labels

  resources :runners, only: [:index, :show, :update, :destroy] do
    member do
      get :resume
      get :pause
    end
123 124 125 126

    collection do
      get :tag_list, format: :json
    end
127 128
  end

129
  resources :jobs, only: :index do
130 131 132 133 134
    collection do
      post :cancel_all
    end
  end

135 136
  concerns :clusterable

137 138
  root to: 'dashboard#index'
end