Class: ProfilesController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ProfilesController
- Defined in:
- app/controllers/profiles_controller.rb
Instance Method Summary collapse
-
#followees ⇒ Object
get /u/:slug/followees.
-
#show ⇒ Object
get /u/:slug.
Instance Method Details
#followees ⇒ Object
get /u/:slug/followees
9 10 11 12 |
# File 'app/controllers/profiles_controller.rb', line 9 def followees @filter = params[:filter] || Hash.new @collection = UserLink.filtered(:followee, @filter).with_follower(@entity).page_for_user(current_page) end |
#show ⇒ Object
get /u/:slug
5 6 |
# File 'app/controllers/profiles_controller.rb', line 5 def show end |