8 lines
283 B
8 lines
283 B
6 years ago
|
class Users::RecentContactsController < Users::BaseController
|
||
|
before_action :private_user_resources!
|
||
|
|
||
|
def index
|
||
|
contacts = observed_user.recent_contacts.distinct
|
||
|
@contacts = contacts.order('private_messages.created_at DESC').limit(10).includes(:user_extension)
|
||
|
end
|
||
|
end
|