diff --git a/app/controllers/audit_events_controller.rb b/app/controllers/audit_events_controller.rb index 237a2133d9..c62a5477a1 100644 --- a/app/controllers/audit_events_controller.rb +++ b/app/controllers/audit_events_controller.rb @@ -29,7 +29,7 @@ class AuditEventsController < ApplicationController if @project 'project_settings' elsif @group - 'group' + 'group_settings' end end diff --git a/app/controllers/groups/hooks_controller.rb b/app/controllers/groups/hooks_controller.rb index fdfa9e2616..dc507092eb 100644 --- a/app/controllers/groups/hooks_controller.rb +++ b/app/controllers/groups/hooks_controller.rb @@ -5,7 +5,7 @@ class Groups::HooksController < Groups::ApplicationController respond_to :html - layout "group" + layout 'group_settings' def index @hooks = @group.hooks diff --git a/app/controllers/groups/ldap_group_links_controller.rb b/app/controllers/groups/ldap_group_links_controller.rb index 6686c39fb3..664a49539e 100644 --- a/app/controllers/groups/ldap_group_links_controller.rb +++ b/app/controllers/groups/ldap_group_links_controller.rb @@ -3,7 +3,7 @@ class Groups::LdapGroupLinksController < Groups::ApplicationController before_action :require_ldap_enabled before_action :authorize_admin_group! - layout 'group' + layout 'group_settings' def index end