2014-09-02 18:07:02 +05:30
|
|
|
class Admin::DashboardController < Admin::ApplicationController
|
|
|
|
def index
|
2017-09-10 17:25:29 +05:30
|
|
|
@projects = Project.without_deleted.with_route.limit(10)
|
2015-04-26 12:48:37 +05:30
|
|
|
@users = User.limit(10)
|
2017-08-17 22:00:37 +05:30
|
|
|
@groups = Group.with_route.limit(10)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|