Browse Source

Add API method to remove a suggestion (#7978)

DELETE /api/v1/suggestions/:account_id

When blocking, remove suggestion from both sides. Muting not affected,
since muting is supposed to be invisible to the target.
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
6b9e03e002
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions
  1. +5
    -0
      app/controllers/api/v1/suggestions_controller.rb
  2. +2
    -1
      app/models/concerns/account_interactions.rb
  3. +1
    -1
      config/routes.rb

+ 5
- 0
app/controllers/api/v1/suggestions_controller.rb View File

@ -13,6 +13,11 @@ class Api::V1::SuggestionsController < Api::BaseController
render json: @accounts, each_serializer: REST::AccountSerializer
end
def destroy
PotentialFriendshipTracker.remove(current_account.id, params[:id])
render_empty
end
private
def set_accounts

+ 2
- 1
app/models/concerns/account_interactions.rb View File

@ -203,7 +203,8 @@ module AccountInteractions
private
def remove_potential_friendship(other_account)
def remove_potential_friendship(other_account, mutual = false)
PotentialFriendshipTracker.remove(id, other_account.id)
PotentialFriendshipTracker.remove(other_account.id, id) if mutual
end
end

+ 1
- 1
config/routes.rb View File

@ -246,7 +246,7 @@ Rails.application.routes.draw do
resources :streaming, only: [:index]
resources :custom_emojis, only: [:index]
resources :suggestions, only: [:index]
resources :suggestions, only: [:index, :destroy]
get '/search', to: 'search#index', as: :search

Loading…
Cancel
Save