gistflow/gistflow

View on GitHub
app/controllers/users/followings_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Users::FollowingsController < ApplicationController
  def index
    @user = User.find_by_username!(params[:user_id])
    @users = @user.followed_users.page(params[:page])
  end
end