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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-07-16 23:19:07 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-07-16 23:19:07 +0400
commit7a167cf1f74b4e74c4ba9de715585a1251165c5b (patch)
tree99ee4ea2b292d7bcfa0adecb711572daf516c44c /app/controllers/projects/repositories_controller.rb
parenta466b2175adc6021a75f31baabbaa42b14203d44 (diff)
Move branches list to own controller with pagination. Ability to remove branches from UI
Diffstat (limited to 'app/controllers/projects/repositories_controller.rb')
-rw-r--r--app/controllers/projects/repositories_controller.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/controllers/projects/repositories_controller.rb b/app/controllers/projects/repositories_controller.rb
index b65af029803..7094a4c1ffe 100644
--- a/app/controllers/projects/repositories_controller.rb
+++ b/app/controllers/projects/repositories_controller.rb
@@ -8,10 +8,6 @@ class Projects::RepositoriesController < Projects::ApplicationController
@activities = @repository.commits_with_refs(20)
end
- def branches
- @branches = @repository.branches
- end
-
def tags
@tags = @repository.tags
end