You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 |