summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/commits_controller.rb1
-rw-r--r--app/controllers/snippets_controller.rb1
-rw-r--r--app/controllers/team_members_controller.rb1
3 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/commits_controller.rb b/app/controllers/commits_controller.rb
index 83071891be4..79b97ed7594 100644
--- a/app/controllers/commits_controller.rb
+++ b/app/controllers/commits_controller.rb
@@ -2,6 +2,7 @@ require "base64"
class CommitsController < ApplicationController
before_filter :project
+ layout "project"
# Authorize
before_filter :add_project_abilities
diff --git a/app/controllers/snippets_controller.rb b/app/controllers/snippets_controller.rb
index d9a6ab2a1b3..54ad6019f75 100644
--- a/app/controllers/snippets_controller.rb
+++ b/app/controllers/snippets_controller.rb
@@ -1,6 +1,7 @@
class SnippetsController < ApplicationController
before_filter :authenticate_user!
before_filter :project
+ layout "project"
# Authorize
before_filter :add_project_abilities
diff --git a/app/controllers/team_members_controller.rb b/app/controllers/team_members_controller.rb
index 48e7e9b9c4a..8a4e32e59c5 100644
--- a/app/controllers/team_members_controller.rb
+++ b/app/controllers/team_members_controller.rb
@@ -1,5 +1,6 @@
class TeamMembersController < ApplicationController
before_filter :project
+ layout "project"
# Authorize
before_filter :add_project_abilities