Skip to content
Extraits de code Groupes Projets
people_controller.rb 1,24 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 or later.  See
Raphael's avatar
Raphael a validé
#   the COPYRIGHT file.
class PeopleController < ApplicationController
  before_filter :authenticate_user!

  respond_to :html
  respond_to :json, :only => [:index, :show]
    @people = Person.search(params[:q]).paginate :page => params[:page], :per_page => 25, :order => 'created_at DESC'
    @person = current_user.visible_person_by_id(params[:id])
      render :file => "#{Rails.root}/public/404.html", :layout => false, :status => 404
    else
      @profile = @person.profile
      @aspects_with_person = current_user.aspects_with_person(@person)
      @posts = current_user.visible_posts(:person_id => @person.id).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
      @post_count = @posts.count
      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