Class: ProfilesController

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

Instance Method Summary collapse

Instance Method Details

#followeesObject

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

#showObject

get /u/:slug



5
6
# File 'app/controllers/profiles_controller.rb', line 5

def show
end