Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/groups/application_controller.rb')
-rw-r--r--app/controllers/groups/application_controller.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/app/controllers/groups/application_controller.rb b/app/controllers/groups/application_controller.rb
index e0fd4befae9..4df9d1b7533 100644
--- a/app/controllers/groups/application_controller.rb
+++ b/app/controllers/groups/application_controller.rb
@@ -1,5 +1,5 @@
class Groups::ApplicationController < ApplicationController
- before_action :set_title
+ layout 'group'
private
@@ -18,10 +18,4 @@ class Groups::ApplicationController < ApplicationController
return render_404
end
end
-
- def set_title
- @title = group.name
- @title_url = group_path(group)
- @sidebar = "group"
- end
end