Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVSizov <fk@sphere.com>2011-10-15 20:56:53 +0400
committerVSizov <fk@sphere.com>2011-10-15 20:56:53 +0400
commitcb02f1cb82ad424ed6e9845e8654fa17e3c38351 (patch)
treec430f98daf7e31d730654f486e4db167293887f1 /config/routes.rb
parentde5d6e95566d4f9a6b673fcf3f95f84a5f96cb85 (diff)
Sortable issues
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 00106b119a6..bdfdff5ffd1 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -40,7 +40,11 @@ Gitlab::Application.routes.draw do
end
resources :commits
resources :team_members
- resources :issues
+ resources :issues do
+ collection do
+ post :sort
+ end
+ end
resources :notes, :only => [:create, :destroy]
end
root :to => "projects#index"