diff options
author | Kushal Pandya <kushalspandya@gmail.com> | 2019-06-26 08:29:24 +0000 |
---|---|---|
committer | Kushal Pandya <kushalspandya@gmail.com> | 2019-06-26 08:29:24 +0000 |
commit | 2b9ddc2f99bc0a49967c9ccc5b79ccc53e7559b4 (patch) | |
tree | feaefb123c083c0b27e76d557edf9160a3b45d2a /app/controllers/groups_controller.rb | |
parent | 58eae2d39275fa1b4cca5f39ebac922d62047c17 (diff) | |
parent | 6f448bd17d2e0a0329146d0f36c3d2b79c48bdc2 (diff) | |
download | gitlab-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.rb | 4 |
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) } |