Welcome to mirror list, hosted at ThFree Co, Russian Federation.

groups_controller.rb « dashboard « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed14f4e1f3baa9689c8d000381dc67179560a7f3 (plain)
1
2
3
4
5
class Dashboard::GroupsController < ApplicationController
  def index
    @group_members = current_user.group_members.page(params[:page]).per(PER_PAGE)
  end
end