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