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