diff --git a/app/controllers/api/v0/follows_controller.rb b/app/controllers/api/v0/follows_controller.rb index 03b9c1070..25e0233f9 100644 --- a/app/controllers/api/v0/follows_controller.rb +++ b/app/controllers/api/v0/follows_controller.rb @@ -8,7 +8,7 @@ module Api user_ids.each do |user_id| Users::FollowJob.perform_later(current_user.id, user_id, "User") end - render json: { outcome: "followed 50 users" } + render json: { outcome: "followed #{user_ids.count} users" } end end end