Class: My::FollowersController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- My::FollowersController
- Defined in:
- app/controllers/my/followers_controller.rb
Instance Method Summary collapse
-
#index ⇒ Object
get /my/followers.
Instance Method Details
#index ⇒ Object
get /my/followers
5 6 7 8 |
# File 'app/controllers/my/followers_controller.rb', line 5 def index @filter = params[:filter] || Hash.new @collection = UserLink.filtered(:follower, @filter).with_followee(current_user).page_for_user(current_page) end |