class StatusController < ApplicationController

  before_filter :require_user
  
  access_control do
    allow :admin
  end  

  def index
    @placemarks = Placemark.find(:all, :order => "updated_at DESC")
    @comments = Comment.find(:all, :order => "created_at DESC")
    @comments.sort! { |b,a| a.created_at <=> b.created_at }
    
  end

end

