Skip to content
Extraits de code Groupes Projets
people_controller.rb 1,14 ko
Newer Older
Raphael's avatar
Raphael a validé
#   Copyright (c) 2010, Diaspora Inc.  This file is
Raphael's avatar
Raphael a validé
#   licensed under the Affero General Public License version 3.  See
#   the COPYRIGHT file.
class PeopleController < ApplicationController
  before_filter :authenticate_user!

  respond_to :html
  respond_to :json, :only => [:index, :show]
Jamie Wilkinson's avatar
Jamie Wilkinson a validé
    @aspects_dropdown_array = current_user.aspects.collect{|x| [x.to_s, x.id]}
    @people = Person.search params[:q]
    respond_with @people
    @person = current_user.visible_person_by_id(params[:id])
    @profile = @person.profile
Raphael's avatar
Raphael a validé
    @aspects_with_person = current_user.aspects_with_person(@person)
Jamie Wilkinson's avatar
Jamie Wilkinson a validé
    @aspects_dropdown_array = current_user.aspects.collect{|x| [x.to_s, x.id]}
    @posts = current_user.visible_posts_from_others(:from => @person).paginate :page => params[:page], :order => 'created_at DESC'
    @latest_status_message = current_user.raw_visible_posts.find_all_by__type_and_person_id("StatusMessage", params[:id]).last
    respond_with @person
    current_user.unfriend(current_user.visible_person_by_id(params[:id]))
Raphael's avatar
Raphael a validé
    respond_with :location => root_url