diff options
author | randx <dmitriy.zaporozhets@gmail.com> | 2012-10-09 22:09:46 +0300 |
---|---|---|
committer | randx <dmitriy.zaporozhets@gmail.com> | 2012-10-09 22:09:46 +0300 |
commit | 679d0d6d760b850e27c13f3ce0f812b8b081df7f (patch) | |
tree | e3f088a9139d693e96fd2bd86264150f0d96270c /app/controllers/commit_controller.rb | |
parent | 63fe042d97a5430770ec50fc0e8f29c416bd2ec9 (diff) | |
download | gitlab-ce-679d0d6d760b850e27c13f3ce0f812b8b081df7f.tar.gz |
Context refactoring. Move Issues list, Search logic to context
Diffstat (limited to 'app/controllers/commit_controller.rb')
-rw-r--r-- | app/controllers/commit_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/commit_controller.rb b/app/controllers/commit_controller.rb index 25a1f0fe708..97998352255 100644 --- a/app/controllers/commit_controller.rb +++ b/app/controllers/commit_controller.rb @@ -8,7 +8,7 @@ class CommitController < ProjectResourceController before_filter :require_non_empty_project def show - result = CommitLoad.new(project, current_user, params).execute + result = CommitLoadContext.new(project, current_user, params).execute @commit = result[:commit] git_not_found! unless @commit |