summaryrefslogtreecommitdiff
path: root/app/controllers/groups/application_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/groups/application_controller.rb')
-rw-r--r--app/controllers/groups/application_controller.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/app/controllers/groups/application_controller.rb b/app/controllers/groups/application_controller.rb
index 469a6813ee2..e0fd4befae9 100644
--- a/app/controllers/groups/application_controller.rb
+++ b/app/controllers/groups/application_controller.rb
@@ -1,4 +1,5 @@
class Groups::ApplicationController < ApplicationController
+ before_action :set_title
private
@@ -18,11 +19,9 @@ class Groups::ApplicationController < ApplicationController
end
end
- def determine_layout
- if current_user
- 'group'
- else
- 'public_group'
- end
+ def set_title
+ @title = group.name
+ @title_url = group_path(group)
+ @sidebar = "group"
end
end