7 lines
216 B
Ruby
7 lines
216 B
Ruby
class Admin::DashboardController < Admin::ApplicationController
|
|
def index
|
|
@projects = Project.without_deleted.with_route.limit(10)
|
|
@users = User.limit(10)
|
|
@groups = Group.with_route.limit(10)
|
|
end
|
|
end
|