diff options
author | Josh Frye <joshfng@gmail.com> | 2016-02-03 18:21:14 -0500 |
---|---|---|
committer | Josh Frye <joshfng@gmail.com> | 2016-02-04 13:03:41 -0500 |
commit | 2ad094132de3c491511261bf0e6a2e577fd699dd (patch) | |
tree | 7ba4cf6ed687cde58b13a0c4151ac243db09e47f /app/controllers/groups_controller.rb | |
parent | 2c871ca1968846871ed264cad34b50611eecae3b (diff) | |
download | gitlab-ce-2ad094132de3c491511261bf0e6a2e577fd699dd.tar.gz |
Various filter fixes
Diffstat (limited to 'app/controllers/groups_controller.rb')
-rw-r--r-- | app/controllers/groups_controller.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb index ad6b3eae932..90475c17c17 100644 --- a/app/controllers/groups_controller.rb +++ b/app/controllers/groups_controller.rb @@ -41,6 +41,7 @@ class GroupsController < Groups::ApplicationController def show @last_push = current_user.recent_push if current_user @projects = @projects.includes(:namespace) + @projects = @projects.page(params[:page]).per(PER_PAGE) respond_to do |format| format.html |