diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2021-10-18 19:02:35 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 12:02:35 +0200 |
commit | 17f4e457b3a909522a230fd1f1f8f737e3faad87 (patch) | |
tree | a43668d4509e3e0ba9d0b0e17ea548a3901eb07e /config | |
parent | 766a361b86f8c8212c08d3bae1d4728c3c5b1f09 (diff) |
Add remove from followers api (#16864)
* Add followed_by? to account_interactions * Add RemoveFromFollowersService * Fix AccountBatch to use RemoveFromFollowersService * Add remove from followers API
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 6b6a6562d..86f699516 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -459,6 +459,7 @@ Rails.application.routes.draw do member do post :follow post :unfollow + post :remove_from_followers post :block post :unblock post :mute |