2013-01-20 06:20:50 -05:00
|
|
|
class Admin::DashboardController < Admin::ApplicationController
|
2012-04-20 12:41:49 -04:00
|
|
|
def index
|
|
|
|
@projects = Project.order("created_at DESC").limit(10)
|
|
|
|
@users = User.order("created_at DESC").limit(10)
|
2013-11-20 06:41:41 -05:00
|
|
|
@groups = Group.order("created_at DESC").limit(10)
|
2012-04-20 12:41:49 -04:00
|
|
|
end
|
|
|
|
end
|