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
path: root/config
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-05-03 02:19:46 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2016-06-06 19:59:49 +0300
commit0e2f26dd2a10ed876f96b0496dff2de6780eeaea (patch)
tree3043365d524fb15dbf09c23b41394094dcb6c178 /config
parent4d4a9b7c8a62b720e573a2bec67407acc455531a (diff)
Prioritize labels functionality
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 7e735541f7f..5aa8a0fe8a5 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -719,10 +719,12 @@ Rails.application.routes.draw do
resources :labels, constraints: { id: /\d+/ } do
collection do
post :generate
+ post :set_sorting
end
member do
post :toggle_subscription
+ post :toggle_priority
end
end