diff options
Diffstat (limited to 'app/controllers/groups_controller.rb')
-rw-r--r-- | app/controllers/groups_controller.rb | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb index 269342a6c22..3f516c24a69 100644 --- a/app/controllers/groups_controller.rb +++ b/app/controllers/groups_controller.rb @@ -35,6 +35,7 @@ class GroupsController < Groups::ApplicationController before_action :track_experiment_event, only: [:new] before_action only: :issues do + push_frontend_feature_flag(:or_issuable_queries, group) push_force_frontend_feature_flag(:work_items, group.work_items_feature_flag_enabled?) end @@ -111,7 +112,7 @@ class GroupsController < Groups::ApplicationController def details respond_to do |format| format.html do - render_details_html + redirect_to group_path(group) end format.atom do @@ -235,10 +236,6 @@ class GroupsController < Groups::ApplicationController render 'groups/show', locals: { trial: params[:trial] } end - def render_details_html - render 'groups/show' - end - def render_details_view_atom load_events render layout: 'xml', template: 'groups/show' |