Method: ProfilesController#followees

Defined in:
app/controllers/profiles_controller.rb

#followeesObject

get /u/:slug/followees



14
15
16
17
# File 'app/controllers/profiles_controller.rb', line 14

def followees
  @filter     = params[:filter] || Hash.new
  @collection = UserLink.filtered(:followee, @filter).with_follower(@entity).page_for_user(current_page)
end