about summary refs log tree commit diff
path: root/config/routes.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-09-09 22:44:17 +0200
committerGitHub <noreply@github.com>2019-09-09 22:44:17 +0200
commit1110ea1a9162d5488e1ed5dbccd0803618e713f8 (patch)
tree4b1de5692c879f6345d8a4f2bf93feaa54c7a45d /config/routes.rb
parent14d4a783cda4dd58e61bace172c3bebbe01d2ece (diff)
Add batch actions and categories to admin UI for custom emojis (#11793)
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 534e68814..d22a9e56a 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -242,11 +242,9 @@ Rails.application.routes.draw do
       resource :two_factor_authentication, only: [:destroy]
     end
 
-    resources :custom_emojis, only: [:index, :new, :create, :update, :destroy] do
-      member do
-        post :copy
-        post :enable
-        post :disable
+    resources :custom_emojis, only: [:index, :new, :create] do
+      collection do
+        post :batch
       end
     end