Skip to content
Snippets Groups Projects
Commit 94f91146 authored by Robert Speicher's avatar Robert Speicher
Browse files

Limit admin/logs and admin/resque routes to the actions that are used

parent 4f4c401f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -53,8 +53,8 @@ Gitlab::Application.routes.draw do
resources :hooks, :only => [:index, :create, :destroy] do
get :test
end
resource :logs
resource :resque, :controller => 'resque'
resource :logs, only: [:show]
resource :resque, :controller => 'resque', only: [:show]
root :to => "dashboard#index"
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment