gab-social/app/controllers/api/v1/suggestions_controller.rb

30 lines
848 B
Ruby
Raw Normal View History

2019-07-02 08:10:25 +01:00
# frozen_string_literal: true
class Api::V1::SuggestionsController < Api::BaseController
include Authorization
before_action -> { doorkeeper_authorize! :read }
before_action :require_user!
def index
type = params[:type]
if type == 'related'
2020-11-15 18:48:32 +00:00
count = truthy_param?(:unlimited) ? PotentialFriendshipTracker::MAX_ITEMS : 10
@accounts = PotentialFriendshipTracker.get(current_account.id, limit: count)
render json: @accounts, each_serializer: REST::AccountSerializer
elsif type == 'verified'
@accounts = VerifiedSuggestions.get(current_account.id)
render json: @accounts, each_serializer: REST::AccountSerializer
else
raise GabSocial::NotPermittedError
end
2019-07-02 08:10:25 +01:00
end
def destroy
PotentialFriendshipTracker.remove(current_account.id, params[:id])
2020-11-25 21:22:37 +00:00
render_empty_success
2019-07-02 08:10:25 +01:00
end
end