diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2018-12-07 11:04:39 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2018-12-07 11:04:39 +0300 |
commit | 6ed5044c4e1889a51a1dc6015b602759b83fc3b7 (patch) | |
tree | 3a356678cb78ae822a704b95eed66e16221cb173 /lib/pleroma/web/router.ex | |
parent | 7a2162bbcb2e3a64ed6b56229311aa9fd487351a (diff) | |
download | pleroma-6ed5044c4e1889a51a1dc6015b602759b83fc3b7.tar.gz |
[#394] Refactoring (using Ecto.Multi; "untag" route change).
Diffstat (limited to 'lib/pleroma/web/router.ex')
-rw-r--r-- | lib/pleroma/web/router.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index ae942701e..a07607366 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -99,7 +99,7 @@ defmodule Pleroma.Web.Router do delete("/user", AdminAPIController, :user_delete) post("/user", AdminAPIController, :user_create) put("/users/tag", AdminAPIController, :tag_users) - put("/users/untag", AdminAPIController, :untag_users) + delete("/users/tag", AdminAPIController, :untag_users) get("/permission_group/:nickname", AdminAPIController, :right_get) get("/permission_group/:nickname/:permission_group", AdminAPIController, :right_get) |