BigW Consortium Gitlab

dashboard_controller.rb 178 Bytes
Newer Older
1
class Admin::DashboardController < Admin::ApplicationController
randx committed
2
  def index
3 4 5
    @projects = Project.limit(10)
    @users = User.limit(10)
    @groups = Group.limit(10)
randx committed
6 7
  end
end