Commit 8426846d6dd018b16c7193ef1bea4527ea08360b
1 parent
04a908f6
Exists in
master
and in
4 other branches
fix default branch
Showing
3 changed files
with
2 additions
and
4 deletions
Show diff stats
app/assets/stylesheets/projects.css.scss
app/controllers/projects_controller.rb
... | ... | @@ -9,7 +9,6 @@ class ProjectsController < ApplicationController |
9 | 9 | before_filter :authorize_read_project!, :except => [:index, :new, :create] |
10 | 10 | before_filter :authorize_admin_project!, :only => [:edit, :update, :destroy] |
11 | 11 | before_filter :require_non_empty_project, :only => [:blob, :tree, :graph] |
12 | - before_filter :load_refs, :only => :tree # load @branch, @tag & @ref | |
13 | 12 | |
14 | 13 | def index |
15 | 14 | source = current_user.projects | ... | ... |
app/helpers/application_helper.rb