Class: My::FolloweesController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/my/followees_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject

get /my/followees



5
6
7
8
# File 'app/controllers/my/followees_controller.rb', line 5

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