summaryrefslogtreecommitdiff
path: root/app/controllers/groups_controller.rb
diff options
context:
space:
mode:
authorKushal Pandya <kushalspandya@gmail.com>2019-06-26 08:29:24 +0000
committerKushal Pandya <kushalspandya@gmail.com>2019-06-26 08:29:24 +0000
commit2b9ddc2f99bc0a49967c9ccc5b79ccc53e7559b4 (patch)
treefeaefb123c083c0b27e76d557edf9160a3b45d2a /app/controllers/groups_controller.rb
parent58eae2d39275fa1b4cca5f39ebac922d62047c17 (diff)
parent6f448bd17d2e0a0329146d0f36c3d2b79c48bdc2 (diff)
downloadgitlab-ce-2b9ddc2f99bc0a49967c9ccc5b79ccc53e7559b4.tar.gz
Merge branch 'fe-issue-reorder' into 'master'
Bring Manual Ordering on Issue List See merge request gitlab-org/gitlab-ce!29410
Diffstat (limited to 'app/controllers/groups_controller.rb')
-rw-r--r--app/controllers/groups_controller.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb
index e936d771502..316da8f129d 100644
--- a/app/controllers/groups_controller.rb
+++ b/app/controllers/groups_controller.rb
@@ -7,6 +7,10 @@ class GroupsController < Groups::ApplicationController
include PreviewMarkdown
include RecordUserLastActivity
+ before_action do
+ push_frontend_feature_flag(:manual_sorting)
+ end
+
respond_to :html
prepend_before_action(only: [:show, :issues]) { authenticate_sessionless_user!(:rss) }